diff options
author | hasso <hasso> | 2005-04-07 19:07:39 +0200 |
---|---|---|
committer | hasso <hasso> | 2005-04-07 19:07:39 +0200 |
commit | b5d518fb32a796a0b376d79bdc5199c48d0a4052 (patch) | |
tree | 5a89e9f489b22fe0d2188b60f82b4aeb23c89d43 /vtysh | |
parent | 2005-04-07 Paul Jakma <paul.jakma@sun.com> (diff) | |
download | frr-b5d518fb32a796a0b376d79bdc5199c48d0a4052.tar.xz frr-b5d518fb32a796a0b376d79bdc5199c48d0a4052.zip |
* Makefile.am: Remove rebuild4 target, it's not used any more by build
procedure. Define vtysh_cmd_FILES. Use EXTRA_DIST.
Diffstat (limited to 'vtysh')
-rw-r--r-- | vtysh/ChangeLog | 5 | ||||
-rw-r--r-- | vtysh/Makefile.am | 29 |
2 files changed, 19 insertions, 15 deletions
diff --git a/vtysh/ChangeLog b/vtysh/ChangeLog index ecf7c2fcc..d72c7a6a3 100644 --- a/vtysh/ChangeLog +++ b/vtysh/ChangeLog @@ -1,3 +1,8 @@ +2005-04-07 Hasso Tepper <hasso at quagga.net> + + * Makefile.am: Remove rebuild4 target, it's not used any more by build + procedure. Define vtysh_cmd_FILES. Use EXTRA_DIST. + 2005-03-28 Hasso Tepper <hasso at quagga.net> * extract.pl.in: Use SNMP_INCLUDES to avoid warnings if compiling with diff --git a/vtysh/Makefile.am b/vtysh/Makefile.am index 830ed8098..35dc76373 100644 --- a/vtysh/Makefile.am +++ b/vtysh/Makefile.am @@ -18,19 +18,18 @@ dist_examples_DATA = vtysh.conf.sample EXTRA_DIST = extract.pl -rebuild4: - ./extract.pl $(top_srcdir)/zebra/*.c $(top_srcdir)/ripd/*.c $(top_srcdir)/ospfd/*.c $(top_srcdir)/bgpd/*.c $(top_srcdir)/isisd/*.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 - -vtysh_cmd.c: $(top_srcdir)/ripd/*.c $(top_srcdir)/ripngd/*.c $(top_srcdir)/ospfd/*.c $(top_srcdir)/ospf6d/*.c \ - $(top_srcdir)/isisd/*.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 \ - $(top_srcdir)/lib/vty.c $(top_srcdir)/zebra/debug.c $(top_srcdir)/zebra/interface.c \ - $(top_srcdir)/zebra/irdp_interface.c $(top_srcdir)/zebra/rtadv.c $(top_srcdir)/zebra/zebra_vty.c \ - $(top_srcdir)/zebra/zserv.c $(top_srcdir)/zebra/router-id.c - ./extract.pl $(top_srcdir)/ripd/*.c $(top_srcdir)/ripngd/*.c $(top_srcdir)/ospfd/*.c $(top_srcdir)/ospf6d/*.c \ - $(top_srcdir)/isisd/*.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 \ - $(top_srcdir)/lib/vty.c $(top_srcdir)/zebra/debug.c $(top_srcdir)/zebra/interface.c \ - $(top_srcdir)/zebra/irdp_interface.c $(top_srcdir)/zebra/rtadv.c $(top_srcdir)/zebra/zebra_vty.c \ - $(top_srcdir)/zebra/zserv.c $(top_srcdir)/zebra/router-id.c > vtysh_cmd.c +vtysh_cmd_FILES = $(top_srcdir)/bgpd/*.c $(top_srcdir)/isisd/*.c \ + $(top_srcdir)/ospfd/*.c $(top_srcdir)/ospf6d/*.c \ + $(top_srcdir)/ripd/*.c $(top_srcdir)/ripngd/*.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 \ + $(top_srcdir)/lib/vty.c $(top_srcdir)/zebra/debug.c \ + $(top_srcdir)/zebra/interface.c \ + $(top_srcdir)/zebra/irdp_interface.c \ + $(top_srcdir)/zebra/rtadv.c $(top_srcdir)/zebra/zebra_vty.c \ + $(top_srcdir)/zebra/zserv.c $(top_srcdir)/zebra/router-id.c + +vtysh_cmd.c: $(vtysh_cmd_FILES) + ./$(EXTRA_DIST) $(vtysh_cmd_FILES) > vtysh_cmd.c |