paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1 | ## Process this file with automake to produce Makefile.in. |
| 2 | |
David Lamparter | 237aac5 | 2014-06-28 22:23:10 +0200 | [diff] [blame] | 3 | AM_CPPFLAGS = -I.. -I$(top_srcdir) -I$(top_srcdir)/lib -I$(top_builddir)/lib |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 4 | DEFS = @DEFS@ -DSYSCONFDIR=\"$(sysconfdir)/\" |
| 5 | INSTALL_SDATA=@INSTALL@ -m 600 |
| 6 | |
Paul Jakma | 52c0bc7 | 2015-08-20 21:30:17 +0100 | [diff] [blame] | 7 | AM_CFLAGS = $(WERROR) |
Paul P Komkoff Jr | 46bc0e4 | 2008-08-13 16:17:04 +0100 | [diff] [blame] | 8 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 9 | noinst_LIBRARIES = libripng.a |
| 10 | sbin_PROGRAMS = ripngd |
| 11 | |
| 12 | libripng_a_SOURCES = \ |
| 13 | ripng_interface.c ripngd.c ripng_zebra.c ripng_route.c ripng_debug.c \ |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 14 | ripng_routemap.c ripng_offset.c ripng_peer.c ripng_nexthop.c |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 15 | |
| 16 | noinst_HEADERS = \ |
paul | 0b24b4c | 2003-05-28 18:37:52 +0000 | [diff] [blame] | 17 | ripng_debug.h ripng_route.h ripngd.h ripng_nexthop.h |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 18 | |
| 19 | ripngd_SOURCES = \ |
| 20 | ripng_main.c $(libripng_a_SOURCES) |
| 21 | |
gdt | b7a97f8 | 2004-07-23 16:23:56 +0000 | [diff] [blame] | 22 | ripngd_LDADD = ../lib/libzebra.la @LIBCAP@ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 23 | |
gdt | d6b72f7 | 2003-12-03 17:24:27 +0000 | [diff] [blame] | 24 | examplesdir = $(exampledir) |
| 25 | dist_examples_DATA = ripngd.conf.sample |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 26 | |