Import Upstream version 1.2.2
[quagga-debian.git] / ripd / Makefile.am
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 = librip.a
10 sbin_PROGRAMS = ripd
11
12 librip_a_SOURCES = \
13         ripd.c rip_zebra.c rip_interface.c rip_debug.c rip_snmp.c \
14         rip_routemap.c rip_peer.c rip_offset.c
15
16 noinst_HEADERS = \
17         ripd.h rip_debug.h rip_interface.h
18
19 ripd_SOURCES = \
20         rip_main.c $(librip_a_SOURCES)
21
22 ripd_LDADD = ../lib/libzebra.la @LIBCAP@
23
24 examplesdir = $(exampledir)
25 dist_examples_DATA = ripd.conf.sample
26
27 EXTRA_DIST = RIPv2-MIB.txt
28