]>
Commit | Line | Data |
---|---|---|
30237d29 DL |
1 | # |
2 | # ldpd | |
3 | # | |
4 | ||
5 | if LDPD | |
6 | noinst_LIBRARIES += ldpd/libldp.a | |
7 | sbin_PROGRAMS += ldpd/ldpd | |
8 | dist_examples_DATA += ldpd/ldpd.conf.sample | |
74dc19a2 | 9 | vtysh_scan += $(top_srcdir)/ldpd/ldp_vty_cmds.c |
f4f2f2cc | 10 | man8 += $(MANBUILD)/ldpd.8 |
30237d29 DL |
11 | endif |
12 | ||
13 | ldpd_libldp_a_SOURCES = \ | |
14 | ldpd/accept.c \ | |
15 | ldpd/address.c \ | |
16 | ldpd/adjacency.c \ | |
17 | ldpd/control.c \ | |
18 | ldpd/hello.c \ | |
19 | ldpd/init.c \ | |
20 | ldpd/interface.c \ | |
21 | ldpd/keepalive.c \ | |
22 | ldpd/l2vpn.c \ | |
23 | ldpd/labelmapping.c \ | |
24 | ldpd/lde.c \ | |
25 | ldpd/lde_lib.c \ | |
26 | ldpd/ldp_debug.c \ | |
27 | ldpd/ldp_vty_cmds.c \ | |
28 | ldpd/ldp_vty_conf.c \ | |
29 | ldpd/ldp_vty_exec.c \ | |
30 | ldpd/ldp_zebra.c \ | |
31 | ldpd/ldpd.c \ | |
32 | ldpd/ldpe.c \ | |
33 | ldpd/log.c \ | |
34 | ldpd/logmsg.c \ | |
35 | ldpd/neighbor.c \ | |
36 | ldpd/notification.c \ | |
37 | ldpd/packet.c \ | |
38 | ldpd/pfkey.c \ | |
39 | ldpd/socket.c \ | |
40 | ldpd/util.c \ | |
41 | # end | |
42 | ||
2e4c2296 | 43 | ldpd/ldp_vty_cmds_clippy.c: $(CLIPPY_DEPS) |
30237d29 DL |
44 | ldpd/ldp_vty_cmds.$(OBJEXT): ldpd/ldp_vty_cmds_clippy.c |
45 | ||
46 | noinst_HEADERS += \ | |
47 | ldpd/control.h \ | |
48 | ldpd/lde.h \ | |
49 | ldpd/ldp.h \ | |
50 | ldpd/ldp_debug.h \ | |
51 | ldpd/ldp_vty.h \ | |
52 | ldpd/ldpd.h \ | |
53 | ldpd/ldpe.h \ | |
54 | ldpd/log.h \ | |
55 | # end | |
56 | ||
57 | ldpd_ldpd_SOURCES = ldpd/ldpd.c | |
fdbd8086 | 58 | ldpd_ldpd_LDADD = ldpd/libldp.a lib/libfrr.la $(LIBCAP) |