blob: c6bd4868d7d01ba2f9102cd4a02ecff254e69386 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001## Process this file with automake to produce Makefile.in.
2
hasso2d582282005-03-28 15:29:07 +00003INCLUDES = @INCLUDES@ -I.. -I$(top_srcdir) -I$(top_srcdir)/lib @SNMP_INCLUDES@
paul718e3742002-12-13 20:15:29 +00004DEFS = @DEFS@ -DSYSCONFDIR=\"$(sysconfdir)/\"
5INSTALL_SDATA=@INSTALL@ -m 600
6
Paul P Komkoff Jr46bc0e42008-08-13 16:17:04 +01007AM_CFLAGS = $(PICFLAGS)
8AM_LDFLAGS = $(PILDFLAGS)
9
paul718e3742002-12-13 20:15:29 +000010noinst_LIBRARIES = libripng.a
11sbin_PROGRAMS = ripngd
12
13libripng_a_SOURCES = \
14 ripng_interface.c ripngd.c ripng_zebra.c ripng_route.c ripng_debug.c \
hassoa94434b2003-05-25 17:10:12 +000015 ripng_routemap.c ripng_offset.c ripng_peer.c ripng_nexthop.c
paul718e3742002-12-13 20:15:29 +000016
17noinst_HEADERS = \
paul0b24b4c2003-05-28 18:37:52 +000018 ripng_debug.h ripng_route.h ripngd.h ripng_nexthop.h
paul718e3742002-12-13 20:15:29 +000019
20ripngd_SOURCES = \
21 ripng_main.c $(libripng_a_SOURCES)
22
gdtb7a97f82004-07-23 16:23:56 +000023ripngd_LDADD = ../lib/libzebra.la @LIBCAP@
paul718e3742002-12-13 20:15:29 +000024
gdtd6b72f72003-12-03 17:24:27 +000025examplesdir = $(exampledir)
26dist_examples_DATA = ripngd.conf.sample
paul718e3742002-12-13 20:15:29 +000027