diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2017-08-04 09:34:44 +0200 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2017-08-04 11:09:50 +0200 |
commit | cde8cd9d6583a2e34a5d78d1358f9c2393317dbd (patch) | |
tree | 6a31311652589b68d356a70dfb9e5873529a2794 /nhrpd/subdir.am | |
parent | build: non-recursive isisd (diff) | |
download | frr-cde8cd9d6583a2e34a5d78d1358f9c2393317dbd.tar.xz frr-cde8cd9d6583a2e34a5d78d1358f9c2393317dbd.zip |
build: non-recursive nhrpd
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'nhrpd/subdir.am')
-rw-r--r-- | nhrpd/subdir.am | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/nhrpd/subdir.am b/nhrpd/subdir.am new file mode 100644 index 000000000..5b06946c8 --- /dev/null +++ b/nhrpd/subdir.am @@ -0,0 +1,43 @@ +# +# nhrpd +# + +if NHRPD +sbin_PROGRAMS += nhrpd/nhrpd +endif + +nhrpd_nhrpd_LDADD = lib/libfrr.la @LIBCAP@ @CARES_LIBS@ +nhrpd_nhrpd_CFLAGS = $(AM_CFLAGS) @CARES_CFLAGS@ +nhrpd_nhrpd_SOURCES = \ + nhrpd/linux.c \ + nhrpd/netlink_arp.c \ + nhrpd/netlink_gre.c \ + nhrpd/nhrp_cache.c \ + nhrpd/nhrp_event.c \ + nhrpd/nhrp_interface.c \ + nhrpd/nhrp_main.c \ + nhrpd/nhrp_nhs.c \ + nhrpd/nhrp_packet.c \ + nhrpd/nhrp_peer.c \ + nhrpd/nhrp_route.c \ + nhrpd/nhrp_shortcut.c \ + nhrpd/nhrp_vc.c \ + nhrpd/nhrp_vty.c \ + nhrpd/reqid.c \ + nhrpd/resolver.c \ + nhrpd/vici.c \ + nhrpd/zbuf.c \ + nhrpd/znl.c \ + # end + +noinst_HEADERS += \ + nhrpd/debug.h \ + nhrpd/list.h \ + nhrpd/netlink.h \ + nhrpd/nhrp_protocol.h \ + nhrpd/nhrpd.h \ + nhrpd/os.h \ + nhrpd/vici.h \ + nhrpd/zbuf.h \ + nhrpd/znl.h \ + # end |