File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / quagga / bgpd / Makefile.am
Revision 1.1.1.4 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Wed Nov 2 10:09:10 2016 UTC (7 years, 8 months ago) by misho
Branches: quagga, MAIN
CVS tags: v1_0_20160315, HEAD
quagga 1.0.20160315

    1: ## Process this file with automake to produce Makefile.in.
    2: 
    3: AM_CPPFLAGS = -I.. -I$(top_srcdir) -I$(top_srcdir)/lib -I$(top_builddir)/lib
    4: DEFS = @DEFS@ -DSYSCONFDIR=\"$(sysconfdir)/\"
    5: INSTALL_SDATA=@INSTALL@ -m 600
    6: 
    7: AM_CFLAGS = $(WERROR)
    8: 
    9: noinst_LIBRARIES = libbgp.a
   10: sbin_PROGRAMS = bgpd
   11: bin_PROGRAMS = bgp_btoa
   12: 
   13: libbgp_a_SOURCES = \
   14: 	bgpd.c bgp_fsm.c bgp_aspath.c bgp_community.c bgp_attr.c \
   15: 	bgp_debug.c bgp_route.c bgp_zebra.c bgp_open.c bgp_routemap.c \
   16: 	bgp_packet.c bgp_network.c bgp_filter.c bgp_regex.c bgp_clist.c \
   17: 	bgp_dump.c bgp_snmp.c bgp_ecommunity.c bgp_mplsvpn.c bgp_nexthop.c \
   18: 	bgp_damp.c bgp_table.c bgp_advertise.c bgp_vty.c bgp_mpath.c \
   19: 	bgp_encap.c bgp_encap_tlv.c
   20: 
   21: noinst_HEADERS = \
   22: 	bgp_aspath.h bgp_attr.h bgp_community.h bgp_debug.h bgp_fsm.h \
   23: 	bgp_network.h bgp_open.h bgp_packet.h bgp_regex.h bgp_route.h \
   24: 	bgpd.h bgp_filter.h bgp_clist.h bgp_dump.h bgp_zebra.h \
   25: 	bgp_ecommunity.h bgp_mplsvpn.h bgp_nexthop.h bgp_damp.h bgp_table.h \
   26: 	bgp_advertise.h bgp_snmp.h bgp_vty.h bgp_mpath.h \
   27: 	bgp_encap.h bgp_encap_tlv.h bgp_encap_types.h
   28: 
   29: bgpd_SOURCES = bgp_main.c
   30: bgpd_LDADD = libbgp.a ../lib/libzebra.la @LIBCAP@ @LIBM@
   31: 
   32: bgp_btoa_SOURCES = bgp_btoa.c
   33: bgp_btoa_LDADD = libbgp.a ../lib/libzebra.la @LIBCAP@ @LIBM@
   34: 
   35: examplesdir = $(exampledir)
   36: dist_examples_DATA = bgpd.conf.sample bgpd.conf.sample2
   37: 
   38: EXTRA_DIST = BGP4-MIB.txt
   39: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>