blob: 9cb3a90fd04d2d1e9ce5f5949031f608c656dd2b [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001## Process this file with automake to produce Makefile.in.
2
3INCLUDES = @INCLUDES@ -I.. -I$(top_srcdir) -I$(top_srcdir)/lib
4DEFS = @DEFS@ -DSYSCONFDIR=\"$(sysconfdir)/\"
5INSTALL_SDATA=@INSTALL@ -m 600
6
7noinst_LIBRARIES = libbgp.a
8sbin_PROGRAMS = bgpd
9
10libbgp_a_SOURCES = \
11 bgpd.c bgp_fsm.c bgp_aspath.c bgp_community.c bgp_attr.c \
12 bgp_debug.c bgp_route.c bgp_zebra.c bgp_open.c bgp_routemap.c \
13 bgp_packet.c bgp_network.c bgp_filter.c bgp_regex.c bgp_clist.c \
14 bgp_dump.c bgp_snmp.c bgp_ecommunity.c bgp_mplsvpn.c bgp_nexthop.c \
15 bgp_damp.c bgp_table.c bgp_advertise.c bgp_vty.c
16
17noinst_HEADERS = \
18 bgp_aspath.h bgp_attr.h bgp_community.h bgp_debug.h bgp_fsm.h \
19 bgp_network.h bgp_open.h bgp_packet.h bgp_regex.h bgp_route.h \
20 bgpd.h bgp_filter.h bgp_clist.h bgp_dump.h bgp_zebra.h \
21 bgp_ecommunity.h bgp_mplsvpn.h bgp_nexthop.h bgp_damp.h bgp_table.h \
22 bgp_advertise.h bgp_snmp.h bgp_vty.h
23
24bgpd_SOURCES = \
25 bgp_main.c $(libbgp_a_SOURCES)
26
pauledd7c242003-06-04 13:59:38 +000027bgpd_LDADD = ../lib/libzebra.a @LIBCAP@
paul718e3742002-12-13 20:15:29 +000028
gdtd6b72f72003-12-03 17:24:27 +000029examplesdir = $(exampledir)
30dist_examples_DATA = bgpd.conf.sample bgpd.conf.sample2
paul718e3742002-12-13 20:15:29 +000031
paul04bd4842003-10-24 04:24:39 +000032EXTRA_DIST = BGP4-MIB.txt
paul718e3742002-12-13 20:15:29 +000033