]> git.proxmox.com Git - mirror_frr.git/blame - lib/Makefile.am
grammar_sandbox: add into daemons if DEV_BUILD
[mirror_frr.git] / lib / Makefile.am
CommitLineData
718e3744 1## Process this file with automake to produce Makefile.in.
2
a50b7ceb 3AM_CPPFLAGS = -I.. -I$(top_srcdir) -I$(top_srcdir)/lib -I$(top_builddir)/lib
aa9584c1 4AM_CFLAGS = $(WERROR)
718e3744 5DEFS = @DEFS@ -DSYSCONFDIR=\"$(sysconfdir)/\"
0d37f9f3 6AM_YFLAGS = -d -Dapi.prefix=@BISON_OPENBRACE@cmd_yy@BISON_CLOSEBRACE@
718e3744 7
0276dd5d
DL
8command_lex.h: command_lex.c
9 @if test ! -f $@; then rm -f command_lex.c; else :; fi
10 @if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) command_lex.c; else :; fi
11command_parse.lo: command_lex.h
12
87efd646 13lib_LTLIBRARIES = libzebra.la
cec0c4fb 14libzebra_la_LDFLAGS = -version-info 0:0:0
718e3744 15
87efd646 16libzebra_la_SOURCES = \
24f5e2fc 17 network.c pid_output.c getopt.c getopt1.c \
bbf5ffa0 18 checksum.c vector.c linklist.c vty.c \
d0bfb22c 19 graph.c command_parse.y command_lex.l command_match.c \
bbf5ffa0 20 command.c \
6ba26ad5 21 sockunion.c prefix.c thread.c if.c buffer.c table.c hash.c \
c5d9d3bb 22 filter.c routemap.c distribute.c stream.c log.c plist.c \
d6be5fb9 23 zclient.c sockopt.c smux.c agentx.c snmp.c md5.c if_rmap.c keychain.c privs.c \
4a1ab8e4 24 sigevent.c pqueue.c jhash.c workqueue.c nexthop.c json.c \
eac6e3f0 25 ptm_lib.c csv.c bfd.c vrf.c systemd.c ns.c memory.c memory_vty.c \
1bf9f027 26 imsg-buffer.c imsg.c skiplist.c \
cbea8737 27 qobj.c wheel.c \
c5d9d3bb 28 event_counter.c \
af2567b6 29 grammar_sandbox.c \
c5d9d3bb
DL
30 strlcpy.c \
31 strlcat.c
2fd2fd5d 32
0276dd5d 33BUILT_SOURCES = route_types.h gitversion.h command_parse.h command_lex.h
718e3744 34
24f5e2fc 35libzebra_la_LIBADD = @LIBCAP@
718e3744 36
af273652 37pkginclude_HEADERS = \
bbf5ffa0 38 buffer.h checksum.h filter.h getopt.h hash.h \
34204aac 39 if.h linklist.h log.h \
d0bfb22c 40 graph.h command_match.h \
bbf5ffa0 41 command.h \
718e3744 42 memory.h network.h prefix.h routemap.h distribute.h sockunion.h \
c5d9d3bb 43 stream.h table.h thread.h vector.h version.h vty.h zebra.h \
c1a03d47 44 plist.h zclient.h sockopt.h smux.h md5.h if_rmap.h keychain.h \
4a1ab8e4 45 privs.h sigevent.h pqueue.h jhash.h zassert.h \
c43ed2e4 46 workqueue.h route_types.h libospf.h nexthop.h json.h \
ea863ec6 47 ptm_lib.h csv.h bfd.h vrf.h ns.h systemd.h bitfield.h \
520d2512 48 fifo.h memory_vty.h mpls.h imsg.h openbsd-queue.h openbsd-tree.h \
cbea8737 49 skiplist.h qobj.h wheel.h \
cdeef0bd 50 event_counter.h
718e3744 51
a38401b6
DL
52noinst_HEADERS = \
53 plist_int.h
54
fa133e00
DL
55noinst_PROGRAMS = grammar_sandbox
56
af2567b6 57grammar_sandbox_SOURCES = grammar_sandbox_main.c
fa133e00
DL
58grammar_sandbox_LDADD = libzebra.la
59
4209a887 60EXTRA_DIST = \
4209a887 61 queue.h \
0276dd5d 62 command_lex.h \
4209a887
DL
63 route_types.pl route_types.txt \
64 gitversion.pl
718e3744 65
e0ca5fde
DL
66route_types.h: $(srcdir)/route_types.txt $(srcdir)/route_types.pl
67 @PERL@ $(srcdir)/route_types.pl < $(srcdir)/route_types.txt > $@
0be793e6
DL
68
69if GIT_VERSION
70
71# bit of a trick here to always have up-to-date git stamps without triggering
72# unneccessary rebuilds. .PHONY causes the .tmp file to be rebuilt always,
73# but if we use that on gitversion.h it'll ripple through the .c file deps.
74# (even if gitversion.h's file timestamp doesn't change, make will think it
75# did, because of .PHONY...)
76
77.PHONY: gitversion.h.tmp
78.SILENT: gitversion.h gitversion.h.tmp
79GITH=gitversion.h
80gitversion.h.tmp: $(srcdir)/../.git
81 @PERL@ $(srcdir)/gitversion.pl $(srcdir) > ${GITH}.tmp
82gitversion.h: gitversion.h.tmp
83 { test -f ${GITH} && diff -s -q ${GITH}.tmp ${GITH}; } || cp -v ${GITH}.tmp ${GITH}
84
85else
86.PHONY: gitversion.h
87gitversion.h:
61be0ee8 88 true
0be793e6 89endif