blob: df0f7d377ec27f915e1459f4887701e4c5cdcbc5 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001## Process this file with automake to produce Makefile.in.
2
David Lamparter237aac52014-06-28 22:23:10 +02003AM_CPPFLAGS = -I.. -I$(top_srcdir) -I$(top_srcdir)/lib -I$(top_builddir)/lib
paul718e3742002-12-13 20:15:29 +00004DEFS = @DEFS@ -DSYSCONFDIR=\"$(sysconfdir)/\"
5INSTALL_SDATA=@INSTALL@ -m 600
6
Paul Jakma52c0bc72015-08-20 21:30:17 +01007AM_CFLAGS = $(WERROR)
Paul P Komkoff Jr46bc0e42008-08-13 16:17:04 +01008
paul718e3742002-12-13 20:15:29 +00009noinst_LIBRARIES = libripng.a
10sbin_PROGRAMS = ripngd
11
12libripng_a_SOURCES = \
13 ripng_interface.c ripngd.c ripng_zebra.c ripng_route.c ripng_debug.c \
hassoa94434b2003-05-25 17:10:12 +000014 ripng_routemap.c ripng_offset.c ripng_peer.c ripng_nexthop.c
paul718e3742002-12-13 20:15:29 +000015
16noinst_HEADERS = \
paul0b24b4c2003-05-28 18:37:52 +000017 ripng_debug.h ripng_route.h ripngd.h ripng_nexthop.h
paul718e3742002-12-13 20:15:29 +000018
19ripngd_SOURCES = \
20 ripng_main.c $(libripng_a_SOURCES)
21
gdtb7a97f82004-07-23 16:23:56 +000022ripngd_LDADD = ../lib/libzebra.la @LIBCAP@
paul718e3742002-12-13 20:15:29 +000023
gdtd6b72f72003-12-03 17:24:27 +000024examplesdir = $(exampledir)
25dist_examples_DATA = ripngd.conf.sample
paul718e3742002-12-13 20:15:29 +000026