]> git.proxmox.com Git - mirror_frr.git/blob - ripngd/Makefile.am
Merge pull request #129 from donaldsharp/redistribute
[mirror_frr.git] / ripngd / 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 = libripng.a
10 sbin_PROGRAMS = ripngd
11
12 libripng_a_SOURCES = \
13 ripng_memory.c \
14 ripng_interface.c ripngd.c ripng_zebra.c ripng_route.c ripng_debug.c \
15 ripng_routemap.c ripng_offset.c ripng_peer.c ripng_nexthop.c
16
17 noinst_HEADERS = \
18 ripng_memory.h \
19 ripng_debug.h ripng_route.h ripngd.h ripng_nexthop.h
20
21 ripngd_SOURCES = \
22 ripng_main.c $(libripng_a_SOURCES)
23
24 ripngd_LDADD = ../lib/libzebra.la @LIBCAP@
25
26 examplesdir = $(exampledir)
27 dist_examples_DATA = ripngd.conf.sample
28