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