diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2021-11-11 15:45:09 +0100 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2021-11-11 15:46:01 +0100 |
commit | e9f7a9655e3d5469ed8a69de3d3d504e85a41e10 (patch) | |
tree | 31238da328ae756e76535eb526334be3d73d4e17 /ripd | |
parent | build: link libcrypt & libdl to libfrr only (diff) | |
download | frr-e9f7a9655e3d5469ed8a69de3d3d504e85a41e10.tar.xz frr-e9f7a9655e3d5469ed8a69de3d3d504e85a41e10.zip |
build: remove some useless intermediate libraries
These really serve no purpose other than slowing our build down. If
there's a benefit to any of these, they can be readded.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'ripd')
-rw-r--r-- | ripd/subdir.am | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/ripd/subdir.am b/ripd/subdir.am index b43e369ab..b00c37588 100644 --- a/ripd/subdir.am +++ b/ripd/subdir.am @@ -3,7 +3,6 @@ # if RIPD -noinst_LIBRARIES += ripd/librip.a sbin_PROGRAMS += ripd/ripd vtysh_scan += \ ripd/rip_cli.c \ @@ -18,12 +17,13 @@ endif man8 += $(MANBUILD)/frr-ripd.8 endif -ripd_librip_a_SOURCES = \ +ripd_ripd_SOURCES = \ 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 \ @@ -47,10 +47,7 @@ noinst_HEADERS += \ ripd/ripd.h \ # end -ripd_ripd_LDADD = ripd/librip.a lib/libfrr.la $(LIBCAP) -ripd_ripd_SOURCES = \ - ripd/rip_main.c \ - # end +ripd_ripd_LDADD = lib/libfrr.la $(LIBCAP) nodist_ripd_ripd_SOURCES = \ yang/frr-ripd.yang.c \ # end |