jardin | eb5d44e | 2003-12-23 08:09:43 +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 \ |
hasso | f695b01 | 2005-04-02 19:03:39 +0000 | [diff] [blame] | 4 | @ISIS_TOPOLOGY_INCLUDES@ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 5 | DEFS = @DEFS@ -DSYSCONFDIR=\"$(sysconfdir)/\" |
| 6 | INSTALL_SDATA=@INSTALL@ -m 600 |
| 7 | LIBS = @LIBS@ |
Paul P Komkoff Jr | 46bc0e4 | 2008-08-13 16:17:04 +0100 | [diff] [blame] | 8 | |
Paul Jakma | 52c0bc7 | 2015-08-20 21:30:17 +0100 | [diff] [blame] | 9 | AM_CFLAGS = $(WERROR) |
Paul P Komkoff Jr | 46bc0e4 | 2008-08-13 16:17:04 +0100 | [diff] [blame] | 10 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 11 | noinst_LIBRARIES = libisis.a |
| 12 | sbin_PROGRAMS = isisd |
paul | a8f03df | 2005-04-10 15:58:10 +0000 | [diff] [blame] | 13 | SUBDIRS = topology |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 14 | |
| 15 | libisis_a_SOURCES = \ |
| 16 | isis_adjacency.c isis_lsp.c dict.c isis_circuit.c isis_pdu.c \ |
Paul Jakma | 238497f | 2007-08-07 18:49:18 +0000 | [diff] [blame] | 17 | isis_tlv.c isisd.c isis_misc.c isis_zebra.c isis_dr.c \ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 18 | isis_flags.c isis_dynhn.c iso_checksum.c isis_csm.c isis_events.c \ |
Christian Franke | acf9865 | 2015-11-12 14:24:22 +0100 | [diff] [blame] | 19 | isis_spf.c isis_redist.c isis_route.c isis_routemap.c |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 20 | |
| 21 | |
| 22 | noinst_HEADERS = \ |
| 23 | isisd.h isis_pdu.h isis_tlv.h isis_adjacency.h isis_constants.h \ |
| 24 | isis_lsp.h dict.h isis_circuit.h isis_misc.h isis_network.h \ |
| 25 | isis_zebra.h isis_dr.h isis_flags.h isis_dynhn.h isis_common.h \ |
Christian Franke | acf9865 | 2015-11-12 14:24:22 +0100 | [diff] [blame] | 26 | iso_checksum.h isis_csm.h isis_events.h isis_spf.h isis_redist.h \ |
| 27 | isis_route.h isis_routemap.h \ |
paul | 41ad878 | 2003-12-30 11:09:00 +0000 | [diff] [blame] | 28 | include-netbsd/clnp.h include-netbsd/esis.h include-netbsd/iso.h |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 29 | |
| 30 | isisd_SOURCES = \ |
David Lamparter | 745bf05 | 2010-02-02 21:49:35 +0100 | [diff] [blame] | 31 | isis_main.c $(libisis_a_SOURCES) \ |
| 32 | isis_bpf.c isis_dlpi.c isis_pfpacket.c |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 33 | |
David Lamparter | 745bf05 | 2010-02-02 21:49:35 +0100 | [diff] [blame] | 34 | isisd_LDADD = @ISIS_TOPOLOGY_LIB@ ../lib/libzebra.la @LIBCAP@ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 35 | |
paul | 41ad878 | 2003-12-30 11:09:00 +0000 | [diff] [blame] | 36 | examplesdir = $(exampledir) |
| 37 | dist_examples_DATA = isisd.conf.sample |