diff options
author | David Lamparter <equinox@diac24.net> | 2018-08-18 06:05:07 +0200 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2018-09-08 21:30:19 +0200 |
commit | 74dc19a2f5f72865b5f7da86453b881ae161e857 (patch) | |
tree | 9de4b34240e8106f48b56f6c11146653612ea20c /zebra/subdir.am | |
parent | build: remove common.am (diff) | |
download | frr-74dc19a2f5f72865b5f7da86453b881ae161e857.tar.xz frr-74dc19a2f5f72865b5f7da86453b881ae161e857.zip |
build: move vtysh & manpage listings to subdir.am
Since we're now building through one large Makefile, we can easily put
things with their daemons and crossreference nicely.
Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to '')
-rw-r--r-- | zebra/subdir.am | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/zebra/subdir.am b/zebra/subdir.am index 5dc375031..91bd792b0 100644 --- a/zebra/subdir.am +++ b/zebra/subdir.am @@ -5,6 +5,22 @@ if ZEBRA sbin_PROGRAMS += zebra/zebra dist_examples_DATA += zebra/zebra.conf.sample +vtysh_scan += \ + $(top_srcdir)/zebra/debug.c \ + $(top_srcdir)/zebra/interface.c \ + $(top_srcdir)/zebra/router-id.c \ + $(top_srcdir)/zebra/rtadv.c \ + $(top_srcdir)/zebra/zebra_mpls_vty.c \ + $(top_srcdir)/zebra/zebra_ptm.c \ + $(top_srcdir)/zebra/zebra_pw.c \ + $(top_srcdir)/zebra/zebra_routemap.c \ + $(top_srcdir)/zebra/zebra_vty.c \ + $(top_srcdir)/zebra/zserv.c \ + # end + +# can be loaded as DSO - always include for vtysh +vtysh_scan += $(top_srcdir)/zebra/irdp_interface.c +vtysh_scan += $(top_srcdir)/zebra/zebra_fpm.c if IRDP module_LTLIBRARIES += zebra/zebra_irdp.la @@ -16,6 +32,7 @@ if FPM module_LTLIBRARIES += zebra/zebra_fpm.la endif +rstman8_DATA += $(MANBUILD)/zebra.8 ## endif ZEBRA endif |