diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-05-28 10:20:21 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-05-28 10:20:21 -0700 |
commit | 078fe1a5228485101a19caba39dab70ea12179ae (patch) | |
tree | d9df5683e119325f43a7adcf1df0837235b71fd4 | |
parent | 774b5b9ac303291dd153e79a6f6bab918a599025 (diff) | |
download | quagga-078fe1a5228485101a19caba39dab70ea12179ae.tar.bz2 quagga-078fe1a5228485101a19caba39dab70ea12179ae.tar.xz |
only process some isisd files
ISISD has several different methods and only one is valid on each system,
so running the others through the preprocessor gives warnings for missing
includes. Instead, only run the few isisd files that have VTY stuff through
the extraction step.
-rw-r--r-- | vtysh/Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/vtysh/Makefile.am b/vtysh/Makefile.am index dbd1d3d2..a4be3413 100644 --- a/vtysh/Makefile.am +++ b/vtysh/Makefile.am @@ -18,7 +18,9 @@ dist_examples_DATA = vtysh.conf.sample EXTRA_DIST = extract.pl -vtysh_cmd_FILES = $(top_srcdir)/bgpd/*.c $(top_srcdir)/isisd/*.c \ +vtysh_cmd_FILES = $(top_srcdir)/bgpd/*.c \ + $(top_srcdir)/isisd/isisd.c $(top_srcdir)/isisd/isis_spf.c \ + $(top_srcdir)/isisd/isis_circuit.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 \ |