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 /ripngd/subdir.am | |
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 'ripngd/subdir.am')
-rw-r--r-- | ripngd/subdir.am | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/ripngd/subdir.am b/ripngd/subdir.am index 9d8d27d4c..a4db3e5a6 100644 --- a/ripngd/subdir.am +++ b/ripngd/subdir.am @@ -3,7 +3,6 @@ # if RIPNGD -noinst_LIBRARIES += ripngd/libripng.a sbin_PROGRAMS += ripngd/ripngd vtysh_scan += \ ripngd/ripng_cli.c \ @@ -14,12 +13,13 @@ vtysh_daemons += ripngd man8 += $(MANBUILD)/frr-ripngd.8 endif -ripngd_libripng_a_SOURCES = \ +ripngd_ripngd_SOURCES = \ ripngd/ripng_cli.c \ ripngd/ripng_debug.c \ ripngd/ripng_interface.c \ ripngd/ripng_nexthop.c \ ripngd/ripng_offset.c \ + ripngd/ripng_main.c \ ripngd/ripng_nb.c \ ripngd/ripng_nb_config.c \ ripngd/ripng_nb_rpcs.c \ @@ -43,10 +43,7 @@ noinst_HEADERS += \ ripngd/ripngd.h \ # end -ripngd_ripngd_LDADD = ripngd/libripng.a lib/libfrr.la $(LIBCAP) -ripngd_ripngd_SOURCES = \ - ripngd/ripng_main.c \ - # end +ripngd_ripngd_LDADD = lib/libfrr.la $(LIBCAP) nodist_ripngd_ripngd_SOURCES = \ yang/frr-ripngd.yang.c \ # end |