]> git.proxmox.com Git - mirror_frr.git/blob - vtysh/Makefile.am
2003-08-11 Taisuke Sasaki <sasaki@soft.net.fujitsu.co.jp>
[mirror_frr.git] / vtysh / Makefile.am
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 @LIBCAP@
13
14 sysconf_DATA = vtysh.conf.sample
15
16 EXTRA_DIST = extract.pl vtysh.conf.sample
17
18 rebuild4:
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
20
21 vtysh_cmd.c: ../zebra/*.c ../ripd/*.c ../ripngd/*.c ../ospfd/*.c \
22 ../ospf6d/*.c ../bgpd/*.c ../lib/keychain.c ../lib/routemap.c \
23 ../lib/filter.c ../lib/plist.c ../lib/distribute.c ../lib/if_rmap.c
24 ./extract.pl ../zebra/*.c ../ripd/*.c ../ripngd/*.c ../ospfd/*.c \
25 ../ospf6d/*.c ../bgpd/*.c ../lib/keychain.c ../lib/routemap.c \
26 ../lib/filter.c ../lib/plist.c ../lib/distribute.c \
27 ../lib/if_rmap.c > vtysh_cmd.c
28