]> git.proxmox.com Git - mirror_frr.git/blame - lib/Makefile.am
lib: dynamic module loading
[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)/\"
05dbb7df 6AM_YFLAGS = -d -Dapi.prefix=@BISON_OPENBRACE@cmd_yy@BISON_CLOSEBRACE@ @BISON_VERBOSE@
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
55c72803
DS
13lib_LTLIBRARIES = libfrr.la
14libfrr_la_LDFLAGS = -version-info 0:0:0
718e3744 15
55c72803 16libfrr_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 \
0964ad9c 30 srcdest_table.c \
c1d0d21f 31 spf_backoff.c \
4f04a76b 32 libfrr.c \
c5d9d3bb 33 strlcpy.c \
30771d65
DL
34 strlcat.c \
35 module.c \
36 # end
2fd2fd5d 37
0276dd5d 38BUILT_SOURCES = route_types.h gitversion.h command_parse.h command_lex.h
718e3744 39
55c72803 40libfrr_la_LIBADD = @LIBCAP@
718e3744 41
af273652 42pkginclude_HEADERS = \
bbf5ffa0 43 buffer.h checksum.h filter.h getopt.h hash.h \
34204aac 44 if.h linklist.h log.h \
d0bfb22c 45 graph.h command_match.h \
bbf5ffa0 46 command.h \
718e3744 47 memory.h network.h prefix.h routemap.h distribute.h sockunion.h \
c5d9d3bb 48 stream.h table.h thread.h vector.h version.h vty.h zebra.h \
c1a03d47 49 plist.h zclient.h sockopt.h smux.h md5.h if_rmap.h keychain.h \
4a1ab8e4 50 privs.h sigevent.h pqueue.h jhash.h zassert.h \
c43ed2e4 51 workqueue.h route_types.h libospf.h nexthop.h json.h \
ea863ec6 52 ptm_lib.h csv.h bfd.h vrf.h ns.h systemd.h bitfield.h \
520d2512 53 fifo.h memory_vty.h mpls.h imsg.h openbsd-queue.h openbsd-tree.h \
cbea8737 54 skiplist.h qobj.h wheel.h \
7790a2d6 55 event_counter.h \
0964ad9c 56 monotime.h \
c1d0d21f 57 spf_backoff.h \
4f04a76b 58 srcdest_table.h \
30771d65 59 module.h \
4f04a76b
DL
60 libfrr.h \
61 # end
718e3744 62
a38401b6 63noinst_HEADERS = \
deaa50db
DL
64 plist_int.h \
65 log_int.h
a38401b6 66
fa133e00
DL
67noinst_PROGRAMS = grammar_sandbox
68
af2567b6 69grammar_sandbox_SOURCES = grammar_sandbox_main.c
7df2e1c3 70grammar_sandbox_LDADD = libfrr.la
fa133e00 71
4209a887 72EXTRA_DIST = \
4209a887 73 queue.h \
0276dd5d 74 command_lex.h \
4209a887
DL
75 route_types.pl route_types.txt \
76 gitversion.pl
718e3744 77
e0ca5fde
DL
78route_types.h: $(srcdir)/route_types.txt $(srcdir)/route_types.pl
79 @PERL@ $(srcdir)/route_types.pl < $(srcdir)/route_types.txt > $@
0be793e6
DL
80
81if GIT_VERSION
82
83# bit of a trick here to always have up-to-date git stamps without triggering
84# unneccessary rebuilds. .PHONY causes the .tmp file to be rebuilt always,
85# but if we use that on gitversion.h it'll ripple through the .c file deps.
86# (even if gitversion.h's file timestamp doesn't change, make will think it
87# did, because of .PHONY...)
88
89.PHONY: gitversion.h.tmp
90.SILENT: gitversion.h gitversion.h.tmp
91GITH=gitversion.h
92gitversion.h.tmp: $(srcdir)/../.git
93 @PERL@ $(srcdir)/gitversion.pl $(srcdir) > ${GITH}.tmp
94gitversion.h: gitversion.h.tmp
95 { test -f ${GITH} && diff -s -q ${GITH}.tmp ${GITH}; } || cp -v ${GITH}.tmp ${GITH}
96
97else
98.PHONY: gitversion.h
99gitversion.h:
61be0ee8 100 true
0be793e6 101endif