paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1 | ## Process this file with automake to produce Makefile.in. |
| 2 | |
Vincent Bernat | 08d7f65 | 2012-05-22 22:29:17 +0200 | [diff] [blame^] | 3 | INCLUDES = @INCLUDES@ -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 P Komkoff Jr | 46bc0e4 | 2008-08-13 16:17:04 +0100 | [diff] [blame] | 7 | AM_CFLAGS = $(PICFLAGS) |
| 8 | AM_LDFLAGS = $(PILDFLAGS) |
| 9 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 10 | noinst_LIBRARIES = libripng.a |
| 11 | sbin_PROGRAMS = ripngd |
| 12 | |
| 13 | libripng_a_SOURCES = \ |
| 14 | 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] | 15 | ripng_routemap.c ripng_offset.c ripng_peer.c ripng_nexthop.c |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 16 | |
| 17 | noinst_HEADERS = \ |
paul | 0b24b4c | 2003-05-28 18:37:52 +0000 | [diff] [blame] | 18 | ripng_debug.h ripng_route.h ripngd.h ripng_nexthop.h |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 19 | |
| 20 | ripngd_SOURCES = \ |
| 21 | ripng_main.c $(libripng_a_SOURCES) |
| 22 | |
gdt | b7a97f8 | 2004-07-23 16:23:56 +0000 | [diff] [blame] | 23 | ripngd_LDADD = ../lib/libzebra.la @LIBCAP@ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 24 | |
gdt | d6b72f7 | 2003-12-03 17:24:27 +0000 | [diff] [blame] | 25 | examplesdir = $(exampledir) |
| 26 | dist_examples_DATA = ripngd.conf.sample |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 27 | |