2017-11-10 18:55:16 +01:00
|
|
|
#
|
|
|
|
# sharpd
|
|
|
|
#
|
|
|
|
|
|
|
|
if SHARPD
|
|
|
|
noinst_LIBRARIES += sharpd/libsharp.a
|
|
|
|
sbin_PROGRAMS += sharpd/sharpd
|
2020-10-02 00:16:23 +02:00
|
|
|
vtysh_daemons += sharpd
|
2020-01-15 00:00:32 +01:00
|
|
|
man8 += $(MANBUILD)/frr-sharpd.8
|
2017-11-10 18:55:16 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
sharpd_libsharp_a_SOURCES = \
|
2019-02-07 15:58:38 +01:00
|
|
|
sharpd/sharp_nht.c \
|
2017-11-10 18:55:16 +01:00
|
|
|
sharpd/sharp_zebra.c \
|
|
|
|
sharpd/sharp_vty.c \
|
2019-12-10 17:23:25 +01:00
|
|
|
sharpd/sharp_logpump.c \
|
2017-11-10 18:55:16 +01:00
|
|
|
# end
|
|
|
|
|
2018-02-15 19:35:10 +01:00
|
|
|
noinst_HEADERS += \
|
2019-02-07 15:58:38 +01:00
|
|
|
sharpd/sharp_nht.h \
|
2018-02-15 19:35:10 +01:00
|
|
|
sharpd/sharp_vty.h \
|
2019-02-07 14:21:24 +01:00
|
|
|
sharpd/sharp_globals.h \
|
2018-02-15 19:35:10 +01:00
|
|
|
sharpd/sharp_zebra.h \
|
|
|
|
# end
|
|
|
|
|
2020-04-15 10:27:49 +02:00
|
|
|
clippy_scan += \
|
|
|
|
sharpd/sharp_vty.c \
|
|
|
|
# end
|
2017-11-10 18:55:16 +01:00
|
|
|
|
|
|
|
sharpd_sharpd_SOURCES = sharpd/sharp_main.c
|
2019-01-30 18:11:54 +01:00
|
|
|
sharpd_sharpd_LDADD = sharpd/libsharp.a lib/libfrr.la $(LIBCAP)
|
2017-11-10 18:55:16 +01:00
|
|
|
|