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 = librip.a |
| 11 | sbin_PROGRAMS = ripd |
| 12 | |
| 13 | librip_a_SOURCES = \ |
| 14 | ripd.c rip_zebra.c rip_interface.c rip_debug.c rip_snmp.c \ |
| 15 | rip_routemap.c rip_peer.c rip_offset.c |
| 16 | |
| 17 | noinst_HEADERS = \ |
paul | 92779fe | 2005-10-28 10:23:09 +0000 | [diff] [blame] | 18 | ripd.h rip_debug.h rip_interface.h |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 19 | |
| 20 | ripd_SOURCES = \ |
| 21 | rip_main.c $(librip_a_SOURCES) |
| 22 | |
gdt | b7a97f8 | 2004-07-23 16:23:56 +0000 | [diff] [blame] | 23 | ripd_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 = ripd.conf.sample |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 27 | |
paul | 04bd484 | 2003-10-24 04:24:39 +0000 | [diff] [blame] | 28 | EXTRA_DIST = RIPv2-MIB.txt |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 29 | |