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 = libospf6.a |
| 10 | sbin_PROGRAMS = ospf6d |
| 11 | |
| 12 | libospf6_a_SOURCES = \ |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 13 | ospf6_network.c ospf6_message.c ospf6_lsa.c ospf6_lsdb.c \ |
| 14 | ospf6_top.c ospf6_area.c ospf6_interface.c ospf6_neighbor.c \ |
| 15 | ospf6_flood.c ospf6_route.c ospf6_intra.c ospf6_zebra.c \ |
hasso | ef1bbf5 | 2004-10-08 12:04:21 +0000 | [diff] [blame] | 16 | ospf6_spf.c ospf6_proto.c ospf6_asbr.c ospf6_abr.c ospf6_snmp.c \ |
| 17 | ospf6d.c |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 18 | |
| 19 | noinst_HEADERS = \ |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 20 | ospf6_network.h ospf6_message.h ospf6_lsa.h ospf6_lsdb.h \ |
| 21 | ospf6_top.h ospf6_area.h ospf6_interface.h ospf6_neighbor.h \ |
| 22 | ospf6_flood.h ospf6_route.h ospf6_intra.h ospf6_zebra.h \ |
paul | ddd119f | 2004-10-10 08:07:29 +0000 | [diff] [blame] | 23 | ospf6_spf.h ospf6_proto.h ospf6_asbr.h ospf6_abr.h ospf6_snmp.h \ |
hasso | ef1bbf5 | 2004-10-08 12:04:21 +0000 | [diff] [blame] | 24 | ospf6d.h |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 25 | |
| 26 | ospf6d_SOURCES = \ |
| 27 | ospf6_main.c $(libospf6_a_SOURCES) |
| 28 | |
gdt | b7a97f8 | 2004-07-23 16:23:56 +0000 | [diff] [blame] | 29 | ospf6d_LDADD = ../lib/libzebra.la @LIBCAP@ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 30 | |
gdt | d6b72f7 | 2003-12-03 17:24:27 +0000 | [diff] [blame] | 31 | examplesdir = $(exampledir) |
| 32 | dist_examples_DATA = ospf6d.conf.sample |