paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1 | ## Process this file with Automake to create Makefile.in |
| 2 | |
| 3 | INCLUDES = @INCLUDES@ -I.. -I$(top_srcdir) -I$(top_srcdir)/lib |
| 4 | DEFS = @DEFS@ -DSYSCONFDIR=\"$(sysconfdir)/\" |
| 5 | |
| 6 | LIBS = @LIBS@ @CURSES@ @LIBPAM@ |
| 7 | |
| 8 | bin_PROGRAMS = vtysh |
| 9 | |
| 10 | vtysh_SOURCES = vtysh_main.c vtysh.c vtysh_cmd.c vtysh_user.c vtysh_config.c |
| 11 | noinst_HEADERS = vtysh.h vtysh_user.h |
| 12 | vtysh_LDADD = ../lib/libzebra.a |
| 13 | |
| 14 | sysconf_DATA = vtysh.conf.sample |
| 15 | |
| 16 | EXTRA_DIST = extract.pl vtysh.conf.sample |
| 17 | |
| 18 | rebuild4: |
hasso | 0750d21 | 2003-05-24 21:41:49 +0000 | [diff] [blame^] | 19 | ./extract.pl ../zebra/*.c ../ripd/*.c ../ospfd/*.c ../bgpd/*.c ../lib/keychain.c ../lib/routemap.c ../lib/filter.c ../lib/plist.c ../lib/distribute.c ../lib/if_rmap.c > vtysh_cmd.c |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 20 | |
| 21 | rebuild: |
hasso | 0750d21 | 2003-05-24 21:41:49 +0000 | [diff] [blame^] | 22 | ./extract.pl ../zebra/*.c ../ripd/*.c ../ripngd/*.c ../ospfd/*.c ../ospf6d/*.c ../bgpd/*.c ../lib/keychain.c ../lib/routemap.c ../lib/filter.c ../lib/plist.c ../lib/distribute.c ../lib/if_rmap.c > vtysh_cmd.c |
paul | ec49766 | 2003-04-09 06:32:56 +0000 | [diff] [blame] | 23 | |
| 24 | vtysh_cmd.c: rebuild |