summaryrefslogtreecommitdiffstats
path: root/sharpd/subdir.am
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 09:53:30 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 09:53:30 +0000
commit2c7cac91ed6e7db0f6937923d2b57f97dbdbc337 (patch)
treec05dc0f8e6aa3accc84e3e5cffc933ed94941383 /sharpd/subdir.am
parentInitial commit. (diff)
downloadfrr-2c7cac91ed6e7db0f6937923d2b57f97dbdbc337.tar.xz
frr-2c7cac91ed6e7db0f6937923d2b57f97dbdbc337.zip
Adding upstream version 8.4.4.upstream/8.4.4upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--sharpd/subdir.am33
1 files changed, 33 insertions, 0 deletions
diff --git a/sharpd/subdir.am b/sharpd/subdir.am
new file mode 100644
index 0000000..acf4fe5
--- /dev/null
+++ b/sharpd/subdir.am
@@ -0,0 +1,33 @@
+#
+# sharpd
+#
+
+if SHARPD
+noinst_LIBRARIES += sharpd/libsharp.a
+sbin_PROGRAMS += sharpd/sharpd
+vtysh_scan += sharpd/sharp_vty.c
+vtysh_daemons += sharpd
+man8 += $(MANBUILD)/frr-sharpd.8
+endif
+
+sharpd_libsharp_a_SOURCES = \
+ sharpd/sharp_nht.c \
+ sharpd/sharp_zebra.c \
+ sharpd/sharp_vty.c \
+ sharpd/sharp_logpump.c \
+ # end
+
+noinst_HEADERS += \
+ sharpd/sharp_nht.h \
+ sharpd/sharp_vty.h \
+ sharpd/sharp_globals.h \
+ sharpd/sharp_zebra.h \
+ # end
+
+clippy_scan += \
+ sharpd/sharp_vty.c \
+ # end
+
+sharpd_sharpd_SOURCES = sharpd/sharp_main.c
+sharpd_sharpd_LDADD = sharpd/libsharp.a lib/libfrr.la $(LIBCAP)
+