]> git.proxmox.com Git - mirror_frr.git/blob - Makefile.am
Merge pull request #13088 from donaldsharp/pim_use_after
[mirror_frr.git] / Makefile.am
1 ## Process this file with automake to produce Makefile.in.
2
3 AUTOMAKE_OPTIONS = subdir-objects 1.12
4 ACLOCAL_AMFLAGS = -I m4 -Wall,no-override
5
6 AM_CFLAGS = \
7 $(AC_CFLAGS) \
8 $(LIBYANG_CFLAGS) \
9 $(SQLITE3_CFLAGS) \
10 $(UNWIND_CFLAGS) \
11 $(SAN_FLAGS) \
12 $(WERROR) \
13 # end
14 AM_CXXFLAGS = \
15 $(AC_CXXFLAGS) \
16 $(LIBYANG_CFLAGS) \
17 $(WERROR) \
18 # end
19
20 # CPPFLAGS_BASE does not contain the include path for overriding assert.h,
21 # therefore should be used in tools that do *not* link libfrr or do not want
22 # assert() overridden
23 CPPFLAGS_BASE = \
24 -I$(top_srcdir) -I$(top_srcdir)/include -I$(top_srcdir)/lib \
25 -I$(top_builddir) \
26 $(LUA_INCLUDE) \
27 # end
28 AM_CPPFLAGS = \
29 -I$(top_srcdir)/lib/assert \
30 $(CPPFLAGS_BASE) \
31 # end
32
33 # AM_LDFLAGS is used for executables (daemons). LDFLAGS can be left alone,
34 # but if it is changed it should include $(AM_LDFLAGS)
35 AM_LDFLAGS = \
36 -export-dynamic \
37 $(AC_LDFLAGS) \
38 $(AC_LDFLAGS_EXEC) \
39 $(SAN_FLAGS) \
40 # end
41
42 # libraries need to use libxxx_LDFLAGS = $(LIB_LDFLAGS) -version-info X:Y:Z
43 LIB_LDFLAGS = \
44 -export-dynamic \
45 $(AC_LDFLAGS) \
46 $(SAN_FLAGS) \
47 # end
48
49 # modules need to use xxx_LDFLAGS = $(MODULE_LDFLAGS)
50 MODULE_LDFLAGS = \
51 -export-dynamic \
52 -avoid-version \
53 -module \
54 -shared \
55 $(AC_LDFLAGS) \
56 $(SAN_FLAGS) \
57 # end
58
59 DEFS = @DEFS@ -DSYSCONFDIR=\"$(sysconfdir)/\" -DCONFDATE=$(CONFDATE)
60
61 AR_FLAGS = @AR_FLAGS@
62 ARFLAGS = @ARFLAGS@
63 RANLIB = @RANLIB@
64
65 # these two targets are provided to easily grab autoconf/Makefile variables
66 # you can use either:
67 # eval `make VARFD=3 shvar-CFLAGS 3>&1 1>&2`
68 # CFLAGS="`make VARFD=3 var-CFLAGS 3>&1 1>&2`"
69 # where the former can be used to set several variables at once. Note the
70 # fd redirections -- this is to prevent garbage from make rebuilding other
71 # targets from causing issues.
72 .PHONY: shvar-% var-%
73 VARFD ?= 1
74 shvar-%:
75 @echo "$*=\"$($*)\"" >&$(VARFD)
76 var-%:
77 @echo "$($*)" >&$(VARFD)
78
79 if ONLY_CLIPPY
80 .DEFAULT_GOAL := clippy-only
81 endif
82 clippy-only: Makefile lib/clippy config.h
83 .PHONY: clippy-only
84
85 # overwriting these vars breaks cross-compilation. let's be helpful and warn.
86 #
87 # note: "#AUTODERP# " will be removed from Makefile by configure. These are
88 # GNU make directives & automake will f*ck them up by trying to process them
89 # as automake directives.
90 #
91 #AUTODERP# null=
92 #AUTODERP# SPACE=$(null) $(null)
93 #AUTODERP# mkcheck_CC = $(findstring $(SPACE)CC=, $(SPACE)$(MAKEOVERRIDES))
94 #AUTODERP# mkcheck_CFLAGS = $(findstring $(SPACE)CFLAGS=, $(SPACE)$(MAKEOVERRIDES))
95 #AUTODERP# mkcheck_CPPFLAGS = $(findstring $(SPACE)CPPFLAGS=,$(SPACE)$(MAKEOVERRIDES))
96 #AUTODERP# mkcheck_CCLD = $(findstring $(SPACE)CCLD=, $(SPACE)$(MAKEOVERRIDES))
97 #AUTODERP# mkcheck_LD = $(findstring $(SPACE)LD=, $(SPACE)$(MAKEOVERRIDES))
98 #AUTODERP# mkcheck_LDFLAGS = $(findstring $(SPACE)LDFLAGS=, $(SPACE)$(MAKEOVERRIDES))
99 #AUTODERP# #
100 #AUTODERP# ifneq ($(mkcheck_CC),)
101 #AUTODERP# $(warning WARNING: you have overwritten the "CC" variable on the make command line.)
102 #AUTODERP# endif
103 #AUTODERP# ifneq ($(mkcheck_CFLAGS),)
104 #AUTODERP# $(warning WARNING: you have overwritten the "CFLAGS" variable on the make command line.)
105 #AUTODERP# endif
106 #AUTODERP# ifneq ($(mkcheck_CPPFLAGS),)
107 #AUTODERP# $(warning WARNING: you have overwritten the "CPPFLAGS" variable on the make command line.)
108 #AUTODERP# endif
109 #AUTODERP# ifneq ($(mkcheck_CCLD),)
110 #AUTODERP# $(warning WARNING: you have overwritten the "CCLD" variable on the make command line.)
111 #AUTODERP# endif
112 #AUTODERP# ifneq ($(mkcheck_LD),)
113 #AUTODERP# $(warning WARNING: you have overwritten the "LD" variable on the make command line.)
114 #AUTODERP# endif
115 #AUTODERP# ifneq ($(mkcheck_LDFLAGS),)
116 #AUTODERP# $(warning WARNING: you have overwritten the "LDFLAGS" variable on the make command line.)
117 #AUTODERP# endif
118 #AUTODERP# #
119 #AUTODERP# ifneq ($(mkcheck_CC)$(mkcheck_CFLAGS)$(mkcheck_CPPFLAGS)$(mkcheck_CCLD)$(mkcheck_LD)$(mkcheck_LDFLAGS),)
120 #AUTODERP# $(warning ------)
121 #AUTODERP# $(warning While overwriting these variables works most of the time, it is not recommended and can cause confusing build errors.)
122 #AUTODERP# $(warning This is especially problematic when cross-compiling, since tools that run on the build system during the build process will not be compiled correctly.)
123 #AUTODERP# $(warning All of these variables should be supplied to 'configure', and they will be remembered and correctly applied during 'make'.)
124 #AUTODERP# $(warning ------)
125 #AUTODERP# endif
126
127 EXTRA_DIST =
128 EXTRA_PROGRAMS =
129 BUILT_SOURCES =
130 CLEANFILES =
131 DISTCLEANFILES =
132 SUFFIXES =
133
134 bin_PROGRAMS =
135 sbin_PROGRAMS =
136 sbin_SCRIPTS =
137 noinst_PROGRAMS =
138 noinst_HEADERS =
139 noinst_LIBRARIES =
140 nodist_noinst_DATA =
141 lib_LTLIBRARIES =
142 module_LTLIBRARIES =
143 pkginclude_HEADERS =
144 nodist_pkginclude_HEADERS =
145 dist_yangmodels_DATA =
146 man_MANS =
147 vtysh_daemons =
148 clippy_scan =
149
150 ## libtool, the self-made GNU scourge
151 ## ... this should fix relinking
152 ## ... and AUTOMAKE_DUMMY is needed to prevent automake from treating this
153 ## as overriding the normal targets...
154 $(AUTOMAKE_DUMMY)install-moduleLTLIBRARIES: install-libLTLIBRARIES
155 $(AUTOMAKE_DUMMY)install-binPROGRAMS: install-libLTLIBRARIES
156 $(AUTOMAKE_DUMMY)install-sbinPROGRAMS: install-libLTLIBRARIES
157
158 # Include default rules to compile protobuf message sources
159 SUFFIXES += .proto .pb-c.c .pb-c.h
160
161 # Rules
162
163 AM_V_PROTOC_C = $(am__v_PROTOC_C_$(V))
164 am__v_PROTOC_C_ = $(am__v_PROTOC_C_$(AM_DEFAULT_VERBOSITY))
165 am__v_PROTOC_C_0 = @echo " PROTOC_C" $@;
166 am__v_PROTOC_C_1 =
167
168 .proto.pb-c.c:
169 $(AM_V_PROTOC_C)$(PROTOC_C) -I$(top_srcdir) --c_out=$(top_builddir) $^
170 $(AM_V_GEN)$(SED) -i -e '1i\
171 #include "config.h"' $@
172
173 .pb-c.c.pb-c.h:
174 @echo " GEN " $@
175
176 include doc/subdir.am
177 include doc/user/subdir.am
178 include doc/manpages/subdir.am
179 include doc/developer/subdir.am
180 include include/subdir.am
181 include lib/subdir.am
182 include mlag/subdir.am
183 include zebra/subdir.am
184 include watchfrr/subdir.am
185 include qpb/subdir.am
186 include fpm/subdir.am
187 include grpc/subdir.am
188 include tools/subdir.am
189
190 include mgmtd/subdir.am
191
192 include bgpd/subdir.am
193 include bgpd/rfp-example/librfp/subdir.am
194 include bgpd/rfp-example/rfptest/subdir.am
195 include ripd/subdir.am
196 include ripngd/subdir.am
197 include ospfd/subdir.am
198 include ospf6d/subdir.am
199 include ospfclient/subdir.am
200 include isisd/subdir.am
201 include nhrpd/subdir.am
202 include ldpd/subdir.am
203 include babeld/subdir.am
204 include eigrpd/subdir.am
205 include sharpd/subdir.am
206 include pimd/subdir.am
207 include pbrd/subdir.am
208 include staticd/subdir.am
209 include bfdd/subdir.am
210 include yang/subdir.am
211 include yang/libyang_plugins/subdir.am
212 include vrrpd/subdir.am
213 include pceplib/subdir.am
214 include pceplib/test/subdir.am
215 include pathd/subdir.am
216
217 include vtysh/subdir.am
218 include tests/subdir.am
219 include tests/topotests/subdir.am
220
221 if PKGSRC
222 rcdir=@pkgsrcrcdir@
223 rc_SCRIPTS = \
224 pkgsrc/bgpd.sh \
225 pkgsrc/ospf6d.sh \
226 pkgsrc/ospfd.sh \
227 pkgsrc/ripd.sh \
228 pkgsrc/ripngd.sh \
229 pkgsrc/zebra.sh \
230 pkgsrc/mgmtd.sh \
231 # end
232 endif
233
234 EXTRA_DIST += \
235 aclocal.m4 \
236 README.md \
237 m4/README.txt \
238 m4/libtool-whole-archive.patch \
239 config.version \
240 \
241 python/clidef.py \
242 python/clippy/__init__.py \
243 python/clippy/elf.py \
244 python/clippy/uidhash.py \
245 python/makevars.py \
246 python/makefile.py \
247 python/tiabwarfo.py \
248 python/xrelfo.py \
249 python/xref2vtysh.py \
250 python/test_xrelfo.py \
251 python/runtests.py \
252 \
253 python/xrefstructs.json \
254 \
255 tools/etc/logrotate.d/frr \
256 redhat/frr.pam \
257 redhat/frr.spec \
258 \
259 snapcraft/snapcraft.yaml \
260 snapcraft/README.snap_build.md \
261 snapcraft/README.usage.md \
262 snapcraft/extra_version_info.txt \
263 snapcraft/scripts \
264 snapcraft/defaults \
265 snapcraft/helpers \
266 snapcraft/snap \
267 babeld/Makefile \
268 mgmtd/Makefile \
269 bgpd/Makefile \
270 bgpd/rfp-example/librfp/Makefile \
271 bgpd/rfp-example/rfptest/Makefile \
272 doc/Makefile \
273 doc/developer/Makefile \
274 doc/manpages/Makefile \
275 doc/user/Makefile \
276 eigrpd/Makefile \
277 fpm/Makefile \
278 grpc/Makefile \
279 isisd/Makefile \
280 ldpd/Makefile \
281 lib/Makefile \
282 nhrpd/Makefile \
283 ospf6d/Makefile \
284 ospfclient/Makefile \
285 ospfd/Makefile \
286 pbrd/Makefile \
287 pimd/Makefile \
288 qpb/Makefile \
289 ripd/Makefile \
290 ripngd/Makefile \
291 staticd/Makefile \
292 tests/Makefile \
293 tools/Makefile \
294 vtysh/Makefile \
295 watchfrr/Makefile \
296 zebra/Makefile \
297 vrrpd/Makefile \
298 # end
299
300 AM_V_LLVM_BC = $(am__v_LLVM_BC_$(V))
301 am__v_LLVM_BC_ = $(am__v_LLVM_BC_$(AM_DEFAULT_VERBOSITY))
302 am__v_LLVM_BC_0 = @echo " LLVM.BC " $@;
303 am__v_LLVM_BC_1 =
304
305 AM_V_LLVM_LD = $(am__v_LLVM_LD_$(V))
306 am__v_LLVM_LD_ = $(am__v_LLVM_LD_$(AM_DEFAULT_VERBOSITY))
307 am__v_LLVM_LD_0 = @echo " LLVM.LD " $@;
308 am__v_LLVM_LD_1 =
309
310 SUFFIXES += .lo.bc .o.bc
311
312 .o.o.bc:
313 $(AM_V_LLVM_BC)$(COMPILE) -emit-llvm -c -o $@ $(patsubst %.o,%.c,$<)
314 .lo.lo.bc:
315 $(AM_V_LLVM_BC)$(COMPILE) -emit-llvm -c -o $@ $(patsubst %.lo,%.c,$<)
316
317 %.cg.json: %.bc tools/frr-llvm-cg
318 tools/frr-llvm-cg -o $@ $<
319 %.cg.dot: %.cg.json
320 $(PYTHON) $(top_srcdir)/python/callgraph-dot.py $< $@
321 %.cg.svg: %.cg.dot
322 @echo if the following command fails, you need to install graphviz.
323 @echo also, the output is nondeterministic. run it multiple times and use the nicest output.
324 @echo tuning parameters may yield nicer looking graphs as well.
325 fdp -GK=0.7 -Gstart=42231337 -Gmaxiter=2000 -Elen=2 -Gnodesep=1.5 -Tsvg -o$@ $<
326 # don't delete intermediaries
327 .PRECIOUS: %.cg.json %.cg.dot
328
329 # <lib>.la.bc, <lib>.a.bc and <daemon>.bc targets are generated by
330 # python/makefile.py
331 LLVM_LINK = llvm-link-$(llvm_version)
332
333 clean-local: clean-python clean-llvm-bitcode
334 .PHONY: clean-python clean-llvm-bitcode
335 clean-python:
336 find . -name __pycache__ -o -name .pytest_cache | xargs rm -rf
337 find . -name "*.pyc" -o -name "*_clippy.c" | xargs rm -f
338
339 clean-llvm-bitcode:
340 find . -name "*.bc" -o -name "*.cg.json" -o -name "*.cg.dot" -o -name "*.cg.svg" | xargs rm -f
341
342 redistclean:
343 $(MAKE) distclean CONFIG_CLEAN_FILES="$(filter-out $(EXTRA_DIST), $(CONFIG_CLEAN_FILES))"
344
345 indent:
346 tools/indent.py `find sharpd bgpd mgmtd eigrpd include isisd lib nhrpd ospf6d ospfd pimd qpb ripd vtysh zebra -name '*.[ch]' | grep -v include/linux`
347
348 if HAVE_GCOV
349
350 coverage: check
351 @ find . -name '*.o' -exec gcov {} \;
352
353 yorn:
354 @ echo "OK to upload coverage to https://coverage.io [y/N]:"
355 @ read yn; test "$$yn" = "y"
356
357 upload-check-coverage:
358 @ if [ "x${COMMIT}" = "x" ]; then echo "COMMIT required"; exit 1; fi
359 @ if [ "x${TOKEN}" = "x" ]; then echo "TOKEN required"; exit 1; fi
360 curl -s https://codecov.io/bash | bash -s - -C ${COMMIT} -t ${TOKEN}
361
362 force-check-coverage: coverage upload-check-coverage
363
364 check-coverage: coverage yorn upload-check-coverage
365
366 endif