]> git.proxmox.com Git - mirror_frr.git/blob - vtysh/Makefile.am
2003-10-24 waldi@debian.org
[mirror_frr.git] / vtysh / Makefile.am
1 ## Process this file with Automake to create Makefile.in
2
3 INCLUDES = @INCLUDES@ -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_user.c vtysh_config.c
11 nodist_vtysh_SOURCES = vtysh_cmd.c
12 noinst_HEADERS = vtysh.h vtysh_user.h
13 vtysh_LDADD = ../lib/libzebra.a @LIBCAP@
14
15 sysconf_DATA = vtysh.conf.sample
16
17 EXTRA_DIST = extract.pl vtysh.conf.sample
18
19 rebuild4:
20 ./extract.pl $(top_srcdir)/zebra/*.c $(top_srcdir)/ripd/*.c $(top_srcdir)/ospfd/*.c $(top_srcdir)/bgpd/*.c $(top_srcdir)/lib/keychain.c $(top_srcdir)/lib/routemap.c $(top_srcdir)/lib/filter.c $(top_srcdir)/lib/plist.c $(top_srcdir)/lib/distribute.c $(top_srcdir)/lib/if_rmap.c > vtysh_cmd.c
21
22 vtysh_cmd.c: $(top_srcdir)/zebra/*.c $(top_srcdir)/ripd/*.c $(top_srcdir)/ripngd/*.c $(top_srcdir)/ospfd/*.c \
23 $(top_srcdir)/ospf6d/*.c $(top_srcdir)/bgpd/*.c $(top_srcdir)/lib/keychain.c $(top_srcdir)/lib/routemap.c \
24 $(top_srcdir)/lib/filter.c $(top_srcdir)/lib/plist.c $(top_srcdir)/lib/distribute.c $(top_srcdir)/lib/if_rmap.c
25 $(srcdir)/extract.pl $(top_srcdir)/zebra/*.c $(top_srcdir)/ripd/*.c $(top_srcdir)/ripngd/*.c $(top_srcdir)/ospfd/*.c \
26 $(top_srcdir)/ospf6d/*.c $(top_srcdir)/bgpd/*.c $(top_srcdir)/lib/keychain.c $(top_srcdir)/lib/routemap.c \
27 $(top_srcdir)/lib/filter.c $(top_srcdir)/lib/plist.c $(top_srcdir)/lib/distribute.c \
28 $(top_srcdir)/lib/if_rmap.c > vtysh_cmd.c
29