blob: 42c5ad024b2988197a9ef348cf501d1c9550f860 (
plain)
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
47
48
49
50
51
52
53
54
55
56
57
58
|
#
# ldpd
#
if LDPD
noinst_LIBRARIES += ldpd/libldp.a
sbin_PROGRAMS += ldpd/ldpd
dist_examples_DATA += ldpd/ldpd.conf.sample
vtysh_scan += $(top_srcdir)/ldpd/ldp_vty_cmds.c
man8 += $(MANBUILD)/ldpd.8
endif
ldpd_libldp_a_SOURCES = \
ldpd/accept.c \
ldpd/address.c \
ldpd/adjacency.c \
ldpd/control.c \
ldpd/hello.c \
ldpd/init.c \
ldpd/interface.c \
ldpd/keepalive.c \
ldpd/l2vpn.c \
ldpd/labelmapping.c \
ldpd/lde.c \
ldpd/lde_lib.c \
ldpd/ldp_debug.c \
ldpd/ldp_vty_cmds.c \
ldpd/ldp_vty_conf.c \
ldpd/ldp_vty_exec.c \
ldpd/ldp_zebra.c \
ldpd/ldpd.c \
ldpd/ldpe.c \
ldpd/log.c \
ldpd/logmsg.c \
ldpd/neighbor.c \
ldpd/notification.c \
ldpd/packet.c \
ldpd/pfkey.c \
ldpd/socket.c \
ldpd/util.c \
# end
ldpd/ldp_vty_cmds_clippy.c: $(CLIPPY_DEPS)
ldpd/ldp_vty_cmds.$(OBJEXT): ldpd/ldp_vty_cmds_clippy.c
noinst_HEADERS += \
ldpd/control.h \
ldpd/lde.h \
ldpd/ldp.h \
ldpd/ldp_debug.h \
ldpd/ldp_vty.h \
ldpd/ldpd.h \
ldpd/ldpe.h \
ldpd/log.h \
# end
ldpd_ldpd_SOURCES = ldpd/ldpd.c
ldpd_ldpd_LDADD = ldpd/libldp.a lib/libfrr.la $(LIBCAP)
|