]> git.proxmox.com Git - mirror_frr.git/blame - Makefile.am
build: test program needs to be warning-free
[mirror_frr.git] / Makefile.am
CommitLineData
718e3744 1## Process this file with automake to produce Makefile.in.
2
4a121f99 3AUTOMAKE_OPTIONS = subdir-objects 1.12
aad24c5b 4ACLOCAL_AMFLAGS = -I m4
4a121f99 5
aad24c5b 6AM_CFLAGS = \
fdbd8086
DL
7 $(LIBYANG_CFLAGS) \
8 $(SQLITE3_CFLAGS) \
68b8a15f 9 $(UNWIND_CFLAGS) \
dbac691d
DL
10 $(SAN_FLAGS) \
11 $(WERROR) \
12 # end
aad24c5b 13AM_CPPFLAGS = \
aad24c5b 14 -I$(top_srcdir) -I$(top_srcdir)/include -I$(top_srcdir)/lib \
5dbb0a7b
QY
15 -I$(top_builddir) -I$(top_builddir)/include -I$(top_builddir)/lib \
16 $(LUA_INCLUDE) \
17 # end
4007e3ad 18AM_LDFLAGS = \
dbac691d 19 -export-dynamic \
d6e76257 20 $(AC_LDFLAGS) \
dbac691d
DL
21 $(SAN_FLAGS) \
22 # end
62d21cc6 23DEFS = @DEFS@ -DSYSCONFDIR=\"$(sysconfdir)/\" -DCONFDATE=$(CONFDATE)
4a121f99 24
105a8189
DL
25AR_FLAGS = @AR_FLAGS@
26ARFLAGS = @ARFLAGS@
27RANLIB = @RANLIB@
28
b8dd5f9d
DL
29# these two targets are provided to easily grab autoconf/Makefile variables
30# you can use either:
31# eval `make VARFD=3 shvar-CFLAGS 3>&1 1>&2`
32# CFLAGS="`make VARFD=3 var-CFLAGS 3>&1 1>&2`"
33# where the former can be used to set several variables at once. Note the
34# fd redirections -- this is to prevent garbage from make rebuilding other
35# targets from causing issues.
36.PHONY: shvar-% var-%
37VARFD ?= 1
38shvar-%:
39 @echo "$*=\"$($*)\"" >&$(VARFD)
40var-%:
41 @echo "$($*)" >&$(VARFD)
42
a71c5039
DL
43if ONLY_CLIPPY
44.DEFAULT_GOAL := clippy-only
45endif
46clippy-only: Makefile lib/clippy config.h
47.PHONY: clippy-only
48
892d21b1
DL
49# overwriting these vars breaks cross-compilation. let's be helpful and warn.
50#
51# note: "#AUTODERP# " will be removed from Makefile by configure. These are
52# GNU make directives & automake will f*ck them up by trying to process them
53# as automake directives.
54#
55#AUTODERP# null=
56#AUTODERP# SPACE=$(null) $(null)
57#AUTODERP# mkcheck_CC = $(findstring $(SPACE)CC=, $(SPACE)$(MAKEOVERRIDES))
58#AUTODERP# mkcheck_CFLAGS = $(findstring $(SPACE)CFLAGS=, $(SPACE)$(MAKEOVERRIDES))
59#AUTODERP# mkcheck_CPPFLAGS = $(findstring $(SPACE)CPPFLAGS=,$(SPACE)$(MAKEOVERRIDES))
60#AUTODERP# mkcheck_CCLD = $(findstring $(SPACE)CCLD=, $(SPACE)$(MAKEOVERRIDES))
61#AUTODERP# mkcheck_LD = $(findstring $(SPACE)LD=, $(SPACE)$(MAKEOVERRIDES))
62#AUTODERP# mkcheck_LDFLAGS = $(findstring $(SPACE)LDFLAGS=, $(SPACE)$(MAKEOVERRIDES))
63#AUTODERP# #
64#AUTODERP# ifneq ($(mkcheck_CC),)
65#AUTODERP# $(warning WARNING: you have overwritten the "CC" variable on the make command line.)
66#AUTODERP# endif
67#AUTODERP# ifneq ($(mkcheck_CFLAGS),)
68#AUTODERP# $(warning WARNING: you have overwritten the "CFLAGS" variable on the make command line.)
69#AUTODERP# endif
70#AUTODERP# ifneq ($(mkcheck_CPPFLAGS),)
71#AUTODERP# $(warning WARNING: you have overwritten the "CPPFLAGS" variable on the make command line.)
72#AUTODERP# endif
73#AUTODERP# ifneq ($(mkcheck_CCLD),)
74#AUTODERP# $(warning WARNING: you have overwritten the "CCLD" variable on the make command line.)
75#AUTODERP# endif
76#AUTODERP# ifneq ($(mkcheck_LD),)
77#AUTODERP# $(warning WARNING: you have overwritten the "LD" variable on the make command line.)
78#AUTODERP# endif
79#AUTODERP# ifneq ($(mkcheck_LDFLAGS),)
80#AUTODERP# $(warning WARNING: you have overwritten the "LDFLAGS" variable on the make command line.)
81#AUTODERP# endif
82#AUTODERP# #
83#AUTODERP# ifneq ($(mkcheck_CC)$(mkcheck_CFLAGS)$(mkcheck_CPPFLAGS)$(mkcheck_CCLD)$(mkcheck_LD)$(mkcheck_LDFLAGS),)
84#AUTODERP# $(warning ------)
85#AUTODERP# $(warning While overwriting these variables works most of the time, it is not recommended and can cause confusing build errors.)
86#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.)
87#AUTODERP# $(warning All of these variables should be supplied to 'configure', and they will be remembered and correctly applied during 'make'.)
88#AUTODERP# $(warning ------)
89#AUTODERP# endif
90
4a121f99 91EXTRA_DIST =
0045c130 92EXTRA_PROGRAMS =
4a121f99 93BUILT_SOURCES =
0f8b5fd5 94CLEANFILES =
67cf020d 95DISTCLEANFILES =
8fb40377 96SUFFIXES =
4a121f99 97
64d44794
DL
98examplesdir = $(exampledir)
99
4a121f99
DL
100bin_PROGRAMS =
101sbin_PROGRAMS =
bd354725 102sbin_SCRIPTS =
4a121f99
DL
103noinst_PROGRAMS =
104noinst_HEADERS =
105noinst_LIBRARIES =
9e53b315 106nodist_noinst_DATA =
4a121f99 107lib_LTLIBRARIES =
64d44794 108module_LTLIBRARIES =
4a121f99 109pkginclude_HEADERS =
70d27c5b 110nodist_pkginclude_HEADERS =
64d44794 111dist_examples_DATA =
1c2facd1 112dist_yangmodels_DATA =
9e53b315 113man_MANS =
74dc19a2 114vtysh_scan =
d7b86ae4 115vtysh_daemons =
94cfb069 116clippy_scan =
4a121f99 117
6a35bfba
DL
118## libtool, the self-made GNU scourge
119## ... this should fix relinking
120## ... and AUTOMAKE_DUMMY is needed to prevent automake from treating this
121## as overriding the normal targets...
122$(AUTOMAKE_DUMMY)install-moduleLTLIBRARIES: install-libLTLIBRARIES
123$(AUTOMAKE_DUMMY)install-binPROGRAMS: install-libLTLIBRARIES
124$(AUTOMAKE_DUMMY)install-sbinPROGRAMS: install-libLTLIBRARIES
125
9e53b315
DL
126include doc/subdir.am
127include doc/user/subdir.am
128include doc/manpages/subdir.am
129include doc/developer/subdir.am
ba777396 130include include/subdir.am
4a121f99 131include lib/subdir.am
67fa73f2 132include mlag/subdir.am
64d44794 133include zebra/subdir.am
bd354725 134include watchfrr/subdir.am
0f8b5fd5
DL
135include qpb/subdir.am
136include fpm/subdir.am
ec2ac5f2 137include grpc/subdir.am
bd354725 138include tools/subdir.am
4a121f99 139
84d837b7
DL
140include bgpd/subdir.am
141include bgpd/rfp-example/librfp/subdir.am
142include bgpd/rfp-example/rfptest/subdir.am
7f269117
DL
143include ripd/subdir.am
144include ripngd/subdir.am
afca0690
DL
145include ospfd/subdir.am
146include ospf6d/subdir.am
147include ospfclient/subdir.am
86e463cf 148include isisd/subdir.am
cde8cd9d 149include nhrpd/subdir.am
30237d29 150include ldpd/subdir.am
b6f5781c
DL
151include babeld/subdir.am
152include eigrpd/subdir.am
8a71d93d 153include sharpd/subdir.am
35a3c3c1 154include pimd/subdir.am
e5c83d9b 155include pbrd/subdir.am
7e24fdf3 156include staticd/subdir.am
7134904b 157include bfdd/subdir.am
1c2facd1
RW
158include yang/subdir.am
159include yang/libyang_plugins/subdir.am
5435a2bf 160include vrrpd/subdir.am
74971473
JG
161include pceplib/subdir.am
162include pceplib/test/subdir.am
4d7b695d 163include pathd/subdir.am
7f269117 164
8b7668ec 165include vtysh/subdir.am
a1286a32 166include tests/subdir.am
ff37641b 167include tests/topotests/subdir.am
718e3744 168
53d93be1
DL
169if PKGSRC
170rcdir=@pkgsrcrcdir@
171rc_SCRIPTS = \
172 pkgsrc/bgpd.sh \
173 pkgsrc/ospf6d.sh \
174 pkgsrc/ospfd.sh \
175 pkgsrc/ripd.sh \
176 pkgsrc/ripngd.sh \
177 pkgsrc/zebra.sh \
178 # end
179endif
180
181EXTRA_DIST += \
53d93be1 182 aclocal.m4 \
d85cb6b6 183 README.md \
53d93be1 184 m4/README.txt \
d6e76257 185 m4/libtool-whole-archive.patch \
06871ed9 186 config.version \
439be082
QY
187 changelog-auto \
188 changelog-auto.in \
53d93be1
DL
189 \
190 python/clidef.py \
191 python/clippy/__init__.py \
36a8fdfd
DL
192 python/clippy/elf.py \
193 python/clippy/uidhash.py \
879a9dc5 194 python/makevars.py \
94cfb069 195 python/makefile.py \
36a8fdfd
DL
196 python/tiabwarfo.py \
197 python/xrelfo.py \
198 python/test_xrelfo.py \
199 python/runtests.py \
200 \
201 python/xrefstructs.json \
53d93be1 202 \
53d93be1
DL
203 redhat/frr.logrotate \
204 redhat/frr.pam \
205 redhat/frr.spec \
53d93be1
DL
206 \
207 snapcraft/snapcraft.yaml \
208 snapcraft/README.snap_build.md \
209 snapcraft/README.usage.md \
210 snapcraft/extra_version_info.txt \
211 snapcraft/scripts \
212 snapcraft/defaults \
213 snapcraft/helpers \
214 snapcraft/snap \
f8948c1e
DL
215 babeld/Makefile \
216 bgpd/Makefile \
217 bgpd/rfp-example/librfp/Makefile \
218 bgpd/rfp-example/rfptest/Makefile \
9e53b315
DL
219 doc/Makefile \
220 doc/developer/Makefile \
221 doc/manpages/Makefile \
222 doc/user/Makefile \
f8948c1e
DL
223 eigrpd/Makefile \
224 fpm/Makefile \
ec2ac5f2 225 grpc/Makefile \
f8948c1e
DL
226 isisd/Makefile \
227 ldpd/Makefile \
228 lib/Makefile \
229 nhrpd/Makefile \
230 ospf6d/Makefile \
231 ospfclient/Makefile \
232 ospfd/Makefile \
233 pbrd/Makefile \
234 pimd/Makefile \
f8948c1e
DL
235 qpb/Makefile \
236 ripd/Makefile \
237 ripngd/Makefile \
238 staticd/Makefile \
239 tests/Makefile \
240 tools/Makefile \
241 vtysh/Makefile \
242 watchfrr/Makefile \
243 zebra/Makefile \
5435a2bf 244 vrrpd/Makefile \
53d93be1 245 # end
0fc42949 246
8fb40377
DL
247AM_V_LLVM_BC = $(am__v_LLVM_BC_$(V))
248am__v_LLVM_BC_ = $(am__v_LLVM_BC_$(AM_DEFAULT_VERBOSITY))
249am__v_LLVM_BC_0 = @echo " LLVM.BC " $@;
250am__v_LLVM_BC_1 =
251
252AM_V_LLVM_LD = $(am__v_LLVM_LD_$(V))
253am__v_LLVM_LD_ = $(am__v_LLVM_LD_$(AM_DEFAULT_VERBOSITY))
254am__v_LLVM_LD_0 = @echo " LLVM.LD " $@;
255am__v_LLVM_LD_1 =
256
257SUFFIXES += .lo.bc .o.bc
258
259.o.o.bc:
260 $(AM_V_LLVM_BC)$(COMPILE) -emit-llvm -c -o $@ $(patsubst %.o,%.c,$<)
261.lo.lo.bc:
262 $(AM_V_LLVM_BC)$(COMPILE) -emit-llvm -c -o $@ $(patsubst %.lo,%.c,$<)
263
264%.cg.json: %.bc tools/frr-llvm-cg
265 tools/frr-llvm-cg -o $@ $<
3d62176b
DL
266%.cg.dot: %.cg.json
267 $(PYTHON) $(top_srcdir)/python/callgraph-dot.py $< $@
268%.cg.svg: %.cg.dot
269 @echo if the following command fails, you need to install graphviz.
270 @echo also, the output is nondeterministic. run it multiple times and use the nicest output.
271 @echo tuning parameters may yield nicer looking graphs as well.
272 fdp -GK=0.7 -Gstart=42231337 -Gmaxiter=2000 -Elen=2 -Gnodesep=1.5 -Tsvg -o$@ $<
273# don't delete intermediaries
274.PRECIOUS: %.cg.json %.cg.dot
8fb40377
DL
275
276# <lib>.la.bc, <lib>.a.bc and <daemon>.bc targets are generated by
277# python/makefile.py
278LLVM_LINK = llvm-link-$(llvm_version)
279
280clean-local: clean-python clean-llvm-bitcode
281.PHONY: clean-python clean-llvm-bitcode
67cf020d 282clean-python:
dbd10c03
RK
283 find . -name __pycache__ -o -name .pytest_cache | xargs rm -rf
284 find . -name "*.pyc" -o -name "*_clippy.c" | xargs rm -f
67cf020d 285
8fb40377 286clean-llvm-bitcode:
3d62176b 287 find . -name "*.bc" -o -name "*.cg.json" -o -name "*.cg.dot" -o -name "*.cg.svg" | xargs rm -f
8fb40377 288
0b9013e4
DL
289redistclean:
290 $(MAKE) distclean CONFIG_CLEAN_FILES="$(filter-out $(EXTRA_DIST), $(CONFIG_CLEAN_FILES))"
291
da5a0d00
LB
292indent:
293 tools/indent.py `find sharpd bgpd eigrpd include isisd lib nhrpd ospf6d ospfd pimd qpb ripd vtysh zebra -name '*.[ch]' | grep -v include/linux`
83284209
AJ
294
295if HAVE_GCOV
296
297coverage: check
298 @ find . -name '*.o' -exec gcov {} \;
299
300yorn:
301 @ echo "OK to upload coverage to https://coverage.io [y/N]:"
302 @ read yn; test "$$yn" = "y"
303
304upload-check-coverage:
305 @ if [ "x${COMMIT}" = "x" ]; then echo "COMMIT required"; exit 1; fi
306 @ if [ "x${TOKEN}" = "x" ]; then echo "TOKEN required"; exit 1; fi
307 curl -s https://codecov.io/bash | bash -s - -C ${COMMIT} -t ${TOKEN}
308
309force-check-coverage: coverage upload-check-coverage
310
311check-coverage: coverage yorn upload-check-coverage
312
313endif