1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
#
# staticd
#
if STATICD
noinst_LIBRARIES += staticd/libstatic.a
sbin_PROGRAMS += staticd/staticd
vtysh_daemons += staticd
man8 += $(MANBUILD)/frr-staticd.8
endif
staticd_libstatic_a_SOURCES = \
staticd/static_bfd.c \
staticd/static_debug.c \
staticd/static_nht.c \
staticd/static_routes.c \
staticd/static_zebra.c \
staticd/static_vrf.c \
staticd/static_vty.c \
staticd/static_nb.c \
staticd/static_nb_config.c \
staticd/static_srv6.c \
# end
noinst_HEADERS += \
staticd/static_debug.h \
staticd/static_nht.h \
staticd/static_zebra.h \
staticd/static_routes.h \
staticd/static_vty.h \
staticd/static_vrf.h \
staticd/static_nb.h \
staticd/static_srv6.h \
# end
clippy_scan += \
staticd/static_vty.c \
# end
staticd_staticd_SOURCES = staticd/static_main.c
staticd_staticd_LDADD = staticd/libstatic.a lib/libfrr.la $(LIBCAP) $(LIBYANG_LIBS)
nodist_staticd_staticd_SOURCES = \
yang/frr-bfdd.yang.c \
yang/frr-staticd.yang.c \
# end
|