diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-09 13:16:35 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-09 13:16:35 +0000 |
commit | e2bbf175a2184bd76f6c54ccf8456babeb1a46fc (patch) | |
tree | f0b76550d6e6f500ada964a3a4ee933a45e5a6f1 /ripd/subdir.am | |
parent | Initial commit. (diff) | |
download | frr-e2bbf175a2184bd76f6c54ccf8456babeb1a46fc.tar.xz frr-e2bbf175a2184bd76f6c54ccf8456babeb1a46fc.zip |
Adding upstream version 9.1.upstream/9.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ripd/subdir.am')
-rw-r--r-- | ripd/subdir.am | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/ripd/subdir.am b/ripd/subdir.am new file mode 100644 index 0000000..c793a6d --- /dev/null +++ b/ripd/subdir.am @@ -0,0 +1,57 @@ +# +# ripd +# + +if RIPD +sbin_PROGRAMS += ripd/ripd +vtysh_daemons += ripd + +if SNMP +module_LTLIBRARIES += ripd/ripd_snmp.la +endif +man8 += $(MANBUILD)/frr-ripd.8 +endif + +ripd_ripd_SOURCES = \ + ripd/rip_bfd.c \ + ripd/rip_cli.c \ + ripd/rip_debug.c \ + ripd/rip_errors.c \ + ripd/rip_interface.c \ + ripd/rip_offset.c \ + ripd/rip_main.c \ + ripd/rip_nb.c \ + ripd/rip_nb_config.c \ + ripd/rip_nb_rpcs.c \ + ripd/rip_nb_notifications.c \ + ripd/rip_nb_state.c \ + ripd/rip_peer.c \ + ripd/rip_routemap.c \ + ripd/rip_zebra.c \ + ripd/ripd.c \ + # end + +clippy_scan += \ + ripd/rip_bfd.c \ + ripd/rip_cli.c \ + # end + +noinst_HEADERS += \ + ripd/rip_bfd.h \ + ripd/rip_debug.h \ + ripd/rip_errors.h \ + ripd/rip_interface.h \ + ripd/rip_nb.h \ + ripd/ripd.h \ + # end + +ripd_ripd_LDADD = lib/libfrr.la $(LIBCAP) +nodist_ripd_ripd_SOURCES = \ + yang/frr-ripd.yang.c \ + yang/frr-bfdd.yang.c \ + # end + +ripd_ripd_snmp_la_SOURCES = ripd/rip_snmp.c +ripd_ripd_snmp_la_CFLAGS = $(AM_CFLAGS) $(SNMP_CFLAGS) -std=gnu11 +ripd_ripd_snmp_la_LDFLAGS = $(MODULE_LDFLAGS) +ripd_ripd_snmp_la_LIBADD = lib/libfrrsnmp.la |