Paul Jakma | 5734509 | 2011-12-25 17:52:09 +0100 | [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 Jakma | 5734509 | 2011-12-25 17:52:09 +0100 | [diff] [blame] | 4 | DEFS = @DEFS@ -DSYSCONFDIR=\"$(sysconfdir)/\" |
| 5 | INSTALL_SDATA=@INSTALL@ -m 600 |
| 6 | |
David Lamparter | c0bedeb | 2015-03-03 10:00:43 +0100 | [diff] [blame^] | 7 | AM_CFLAGS = $(PICFLAGS) $(WERROR) |
Paul Jakma | 5734509 | 2011-12-25 17:52:09 +0100 | [diff] [blame] | 8 | AM_LDFLAGS = $(PILDFLAGS) |
| 9 | |
| 10 | noinst_LIBRARIES = libbabel.a |
| 11 | sbin_PROGRAMS = babeld |
| 12 | |
| 13 | libbabel_a_SOURCES = \ |
| 14 | babel_zebra.c net.c kernel.c util.c source.c neighbour.c \ |
| 15 | route.c xroute.c message.c resend.c babel_interface.c babeld.c \ |
| 16 | babel_filter.c |
| 17 | |
| 18 | noinst_HEADERS = \ |
| 19 | babel_zebra.h net.h kernel.h util.h source.h neighbour.h \ |
| 20 | route.h xroute.h message.h resend.h babel_interface.h babeld.h \ |
Denis Ovsienko | 61a81be | 2012-03-12 13:51:49 +0100 | [diff] [blame] | 21 | babel_filter.h babel_main.h |
Paul Jakma | 5734509 | 2011-12-25 17:52:09 +0100 | [diff] [blame] | 22 | |
| 23 | babeld_SOURCES = \ |
| 24 | babel_main.c $(libbabel_a_SOURCES) |
| 25 | |
| 26 | babeld_LDADD = ../lib/libzebra.la @LIBCAP@ |
| 27 | |
| 28 | examplesdir = $(exampledir) |
| 29 | dist_examples_DATA = babeld.conf.sample |