]> git.proxmox.com Git - mirror_frr.git/blame - lib/Makefile.am
lib, isisd: enable concurrent configuration editing
[mirror_frr.git] / lib / Makefile.am
CommitLineData
718e3744 1## Process this file with automake to produce Makefile.in.
2
cc933ef9
DL
3AM_CPPFLAGS = -I.. -I$(top_srcdir) -I$(top_srcdir)/lib -I$(top_builddir)/lib \
4 -DVTY_DEPRECATE_INDEX
aa9584c1 5AM_CFLAGS = $(WERROR)
718e3744 6DEFS = @DEFS@ -DSYSCONFDIR=\"$(sysconfdir)/\"
7
87efd646 8lib_LTLIBRARIES = libzebra.la
cec0c4fb 9libzebra_la_LDFLAGS = -version-info 0:0:0
718e3744 10
87efd646 11libzebra_la_SOURCES = \
6590f2c3 12 network.c pid_output.c getopt.c getopt1.c daemon.c \
13 checksum.c vector.c linklist.c vty.c command.c \
6ba26ad5 14 sockunion.c prefix.c thread.c if.c buffer.c table.c hash.c \
718e3744 15 filter.c routemap.c distribute.c stream.c str.c log.c plist.c \
d6be5fb9 16 zclient.c sockopt.c smux.c agentx.c snmp.c md5.c if_rmap.c keychain.c privs.c \
4a1ab8e4 17 sigevent.c pqueue.c jhash.c workqueue.c nexthop.c json.c \
eac6e3f0 18 ptm_lib.c csv.c bfd.c vrf.c systemd.c ns.c memory.c memory_vty.c \
1bf9f027
DL
19 imsg-buffer.c imsg.c skiplist.c \
20 qobj.c
2fd2fd5d 21
4a1ab8e4 22BUILT_SOURCES = route_types.h gitversion.h
718e3744 23
87efd646 24libzebra_la_DEPENDENCIES = @LIB_REGEX@
718e3744 25
8df55970 26libzebra_la_LIBADD = @LIB_REGEX@ @LIBCAP@
718e3744 27
af273652 28pkginclude_HEADERS = \
34204aac 29 buffer.h checksum.h command.h filter.h getopt.h hash.h \
30 if.h linklist.h log.h \
718e3744 31 memory.h network.h prefix.h routemap.h distribute.h sockunion.h \
32 str.h stream.h table.h thread.h vector.h version.h vty.h zebra.h \
c1a03d47 33 plist.h zclient.h sockopt.h smux.h md5.h if_rmap.h keychain.h \
4a1ab8e4 34 privs.h sigevent.h pqueue.h jhash.h zassert.h \
c43ed2e4 35 workqueue.h route_types.h libospf.h nexthop.h json.h \
ea863ec6 36 ptm_lib.h csv.h bfd.h vrf.h ns.h systemd.h bitfield.h \
520d2512 37 fifo.h memory_vty.h mpls.h imsg.h openbsd-queue.h openbsd-tree.h \
1bf9f027 38 skiplist.h qobj.h
718e3744 39
a38401b6
DL
40noinst_HEADERS = \
41 plist_int.h
42
4209a887
DL
43EXTRA_DIST = \
44 regex.c regex-gnu.h \
45 queue.h \
4209a887
DL
46 route_types.pl route_types.txt \
47 gitversion.pl
718e3744 48
e0ca5fde
DL
49route_types.h: $(srcdir)/route_types.txt $(srcdir)/route_types.pl
50 @PERL@ $(srcdir)/route_types.pl < $(srcdir)/route_types.txt > $@
0be793e6
DL
51
52if GIT_VERSION
53
54# bit of a trick here to always have up-to-date git stamps without triggering
55# unneccessary rebuilds. .PHONY causes the .tmp file to be rebuilt always,
56# but if we use that on gitversion.h it'll ripple through the .c file deps.
57# (even if gitversion.h's file timestamp doesn't change, make will think it
58# did, because of .PHONY...)
59
60.PHONY: gitversion.h.tmp
61.SILENT: gitversion.h gitversion.h.tmp
62GITH=gitversion.h
63gitversion.h.tmp: $(srcdir)/../.git
64 @PERL@ $(srcdir)/gitversion.pl $(srcdir) > ${GITH}.tmp
65gitversion.h: gitversion.h.tmp
520d2512 66 { test -f ${GITH} && diff -s -q ${GITH}.tmp ${GITH}; } || cp -v ${GITH}.tmp ${GITH}
0be793e6
DL
67
68else
69.PHONY: gitversion.h
70gitversion.h:
61be0ee8 71 true
0be793e6 72endif