blob: 690c18ff9f6283257b188ba17e6ea5a96a7b5298 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001## Process this file with automake to produce Makefile.in.
2
Vincent Bernat08d7f652012-05-22 22:29:17 +02003INCLUDES = @INCLUDES@ -I.. -I$(top_srcdir) -I$(top_srcdir)/lib -I$(top_builddir)/lib
paul718e3742002-12-13 20:15:29 +00004DEFS = @DEFS@ -DSYSCONFDIR=\"$(sysconfdir)/\"
5
gdt87efd642004-06-30 17:36:11 +00006lib_LTLIBRARIES = libzebra.la
Paul Jakmacec0c4f2006-03-30 13:58:05 +00007libzebra_la_LDFLAGS = -version-info 0:0:0
paul718e3742002-12-13 20:15:29 +00008
gdt87efd642004-06-30 17:36:11 +00009libzebra_la_SOURCES = \
hasso6590f2c2004-10-19 20:40:08 +000010 network.c pid_output.c getopt.c getopt1.c daemon.c \
11 checksum.c vector.c linklist.c vty.c command.c \
paul718e3742002-12-13 20:15:29 +000012 sockunion.c prefix.c thread.c if.c memory.c buffer.c table.c hash.c \
13 filter.c routemap.c distribute.c stream.c str.c log.c plist.c \
Vincent Bernatd6be5fb2012-05-24 09:44:43 +020014 zclient.c sockopt.c smux.c agentx.c snmp.c md5.c if_rmap.c keychain.c privs.c \
paul354d1192005-04-25 16:26:42 +000015 sigevent.c pqueue.c jhash.c memtypes.c workqueue.c
paul2fd2fd52005-04-15 11:47:15 +000016
David Lamparter0be793e2012-11-27 01:34:56 +000017BUILT_SOURCES = memtypes.h route_types.h gitversion.h
paul718e3742002-12-13 20:15:29 +000018
gdt87efd642004-06-30 17:36:11 +000019libzebra_la_DEPENDENCIES = @LIB_REGEX@
paul718e3742002-12-13 20:15:29 +000020
gdt87efd642004-06-30 17:36:11 +000021libzebra_la_LIBADD = @LIB_REGEX@
paul718e3742002-12-13 20:15:29 +000022
gdtaf273652003-12-08 18:12:34 +000023pkginclude_HEADERS = \
paul34204aa2005-11-03 09:00:23 +000024 buffer.h checksum.h command.h filter.h getopt.h hash.h \
25 if.h linklist.h log.h \
paul718e3742002-12-13 20:15:29 +000026 memory.h network.h prefix.h routemap.h distribute.h sockunion.h \
27 str.h stream.h table.h thread.h vector.h version.h vty.h zebra.h \
vincentc1a03d42005-09-28 15:47:44 +000028 plist.h zclient.h sockopt.h smux.h md5.h if_rmap.h keychain.h \
paul354d1192005-04-25 16:26:42 +000029 privs.h sigevent.h pqueue.h jhash.h zassert.h memtypes.h \
Paul Jakma9c42a6e2006-06-27 07:52:03 +000030 workqueue.h route_types.h
paul718e3742002-12-13 20:15:29 +000031
David Lampartere0ca5fd2009-09-16 01:52:42 +020032EXTRA_DIST = regex.c regex-gnu.h memtypes.awk route_types.pl route_types.txt
paul718e3742002-12-13 20:15:29 +000033
paulab59ae32005-04-25 13:52:26 +000034memtypes.h: $(srcdir)/memtypes.c $(srcdir)/memtypes.awk
Paul Jakma9c42a6e2006-06-27 07:52:03 +000035 ($(GAWK) -f $(srcdir)/memtypes.awk $(srcdir)/memtypes.c > $@)
36
David Lampartere0ca5fd2009-09-16 01:52:42 +020037route_types.h: $(srcdir)/route_types.txt $(srcdir)/route_types.pl
38 @PERL@ $(srcdir)/route_types.pl < $(srcdir)/route_types.txt > $@
David Lamparter0be793e2012-11-27 01:34:56 +000039
40if GIT_VERSION
41
42# bit of a trick here to always have up-to-date git stamps without triggering
43# unneccessary rebuilds. .PHONY causes the .tmp file to be rebuilt always,
44# but if we use that on gitversion.h it'll ripple through the .c file deps.
45# (even if gitversion.h's file timestamp doesn't change, make will think it
46# did, because of .PHONY...)
47
48.PHONY: gitversion.h.tmp
49.SILENT: gitversion.h gitversion.h.tmp
50GITH=gitversion.h
51gitversion.h.tmp: $(srcdir)/../.git
52 @PERL@ $(srcdir)/gitversion.pl $(srcdir) > ${GITH}.tmp
53gitversion.h: gitversion.h.tmp
54 { test -f ${GITH} && diff -s -q ${GITH}.tmp ${GITH}; } || cp -v ${GITH}.tmp ${GITH}
55
56else
57.PHONY: gitversion.h
58gitversion.h:
59 /bin/true
60endif