File: subdir.am

package info (click to toggle)
frr 10.5.1-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 77,024 kB
  • sloc: ansic: 687,126; python: 226,152; perl: 6,379; sh: 2,685; cpp: 1,883; makefile: 670; yacc: 397; lex: 363; lisp: 66; xml: 35; javascript: 8
file content (56 lines) | stat: -rw-r--r-- 1,041 bytes parent folder | download | duplicates (4)
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
#
# ripd
#

if RIPD
sbin_PROGRAMS += ripd/ripd
vtysh_daemons += ripd

if SNMP
module_LTLIBRARIES += ripd/ripd_snmp.la
endif
man8 += $(MANBUILD)/frr-ripd.8
endif

ripd_ripd_SOURCES = \
	ripd/rip_bfd.c \
	ripd/rip_debug.c \
	ripd/rip_errors.c \
	ripd/rip_interface.c \
	ripd/rip_offset.c \
	ripd/rip_main.c \
	ripd/rip_nb.c \
	ripd/rip_nb_config.c \
	ripd/rip_nb_rpcs.c \
	ripd/rip_nb_notifications.c \
	ripd/rip_nb_state.c \
	ripd/rip_peer.c \
	ripd/rip_routemap.c \
	ripd/rip_zebra.c \
	ripd/ripd.c \
	# end

clippy_scan += \
	ripd/rip_bfd.c \
	ripd/rip_cli.c \
	# end

noinst_HEADERS += \
	ripd/rip_bfd.h \
	ripd/rip_debug.h \
	ripd/rip_errors.h \
	ripd/rip_interface.h \
	ripd/rip_nb.h \
	ripd/ripd.h \
	# end

ripd_ripd_LDADD = lib/libfrr.la $(LIBCAP)
nodist_ripd_ripd_SOURCES = \
	yang/frr-ripd.yang.c \
	yang/frr-bfdd.yang.c \
	# end

ripd_ripd_snmp_la_SOURCES = ripd/rip_snmp.c
ripd_ripd_snmp_la_CFLAGS = $(AM_CFLAGS) $(SNMP_CFLAGS) -std=gnu11
ripd_ripd_snmp_la_LDFLAGS = $(MODULE_LDFLAGS)
ripd_ripd_snmp_la_LIBADD = lib/libfrrsnmp.la