blob: 1b5024a30b19b7a4dc0d373d76c2e5621d5d40f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#
# libtest
#
if ENABLE_BGP_VNC
noinst_PROGRAMS += bgpd/rfp-example/rfptest/rfptest
endif
bgpd_rfp_example_rfptest_rfptest_CFLAGS = \
$(AM_CFLAGS) \
-I$(top_srcdir)/bgpd/rfapi \
# end
bgpd_rfp_example_rfptest_rfptest_SOURCES = \
bgpd/rfp-example/rfptest/rfptest.c \
# end
noinst_HEADERS += \
bgpd/rfp-example/rfptest/rfptest.h \
# end
bgpd_rfp_example_rfptest_rfptest_LDADD = \
lib/libfrr.la \
$(RFPLDADD) \
# end
|