diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2017-08-04 16:49:15 +0200 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2017-08-04 19:09:14 +0200 |
commit | b6f5781c33d29092a3c3dc40778a6e926a65f65a (patch) | |
tree | 8cd875c111e4be07bafc29362779207dc69ebdab /babeld/subdir.am | |
parent | build: non-recursive ldpd (diff) | |
download | frr-b6f5781c33d29092a3c3dc40778a6e926a65f65a.tar.xz frr-b6f5781c33d29092a3c3dc40778a6e926a65f65a.zip |
build: non-recursive babeld & eigrpd
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'babeld/subdir.am')
-rw-r--r-- | babeld/subdir.am | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/babeld/subdir.am b/babeld/subdir.am new file mode 100644 index 000000000..c44cb275c --- /dev/null +++ b/babeld/subdir.am @@ -0,0 +1,47 @@ +# +# babeld +# + +if BABELD +noinst_LIBRARIES += babeld/libbabel.a +sbin_PROGRAMS += babeld/babeld +dist_examples_DATA += babeld/babeld.conf.sample +endif + +babeld_libbabel_a_SOURCES = \ + babeld/babel_filter.c \ + babeld/babel_interface.c \ + babeld/babel_memory.c \ + babeld/babel_zebra.c \ + babeld/babeld.c \ + babeld/kernel.c \ + babeld/message.c \ + babeld/neighbour.c \ + babeld/net.c \ + babeld/resend.c \ + babeld/route.c \ + babeld/source.c \ + babeld/util.c \ + babeld/xroute.c \ + # end + +noinst_HEADERS += \ + babeld/babel_filter.h \ + babeld/babel_interface.h \ + babeld/babel_main.h \ + babeld/babel_memory.h \ + babeld/babel_zebra.h \ + babeld/babeld.h \ + babeld/kernel.h \ + babeld/message.h \ + babeld/neighbour.h \ + babeld/net.h \ + babeld/resend.h \ + babeld/route.h \ + babeld/source.h \ + babeld/util.h \ + babeld/xroute.h \ + # end + +babeld_babeld_SOURCES = babeld/babel_main.c +babeld_babeld_LDADD = babeld/libbabel.a lib/libfrr.la @LIBCAP@ |