blob: ecd71f8ab7e4b84fcce49739ff83f260141f7782 [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 = libripng.a
8sbin_PROGRAMS = ripngd
9
10libripng_a_SOURCES = \
11 ripng_interface.c ripngd.c ripng_zebra.c ripng_route.c ripng_debug.c \
hassoa94434b2003-05-25 17:10:12 +000012 ripng_routemap.c ripng_offset.c ripng_peer.c ripng_nexthop.c
paul718e3742002-12-13 20:15:29 +000013
14noinst_HEADERS = \
paul0b24b4c2003-05-28 18:37:52 +000015 ripng_debug.h ripng_route.h ripngd.h ripng_nexthop.h
paul718e3742002-12-13 20:15:29 +000016
17ripngd_SOURCES = \
18 ripng_main.c $(libripng_a_SOURCES)
19
pauledd7c242003-06-04 13:59:38 +000020ripngd_LDADD = -L../lib -lzebra @LIBCAP@
paul718e3742002-12-13 20:15:29 +000021
gdtd6b72f72003-12-03 17:24:27 +000022examplesdir = $(exampledir)
23dist_examples_DATA = ripngd.conf.sample
paul718e3742002-12-13 20:15:29 +000024