]> git.proxmox.com Git - mirror_frr.git/blame - Makefile.am
Merge pull request #8814 from kuldeepkash/topojson_framework
[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 111
64d44794
DL
112examplesdir = $(exampledir)
113
4a121f99
DL
114bin_PROGRAMS =
115sbin_PROGRAMS =
bd354725 116sbin_SCRIPTS =
4a121f99
DL
117noinst_PROGRAMS =
118noinst_HEADERS =
119noinst_LIBRARIES =
9e53b315 120nodist_noinst_DATA =
4a121f99 121lib_LTLIBRARIES =
64d44794 122module_LTLIBRARIES =
4a121f99 123pkginclude_HEADERS =
70d27c5b 124nodist_pkginclude_HEADERS =
64d44794 125dist_examples_DATA =
1c2facd1 126dist_yangmodels_DATA =
9e53b315 127man_MANS =
74dc19a2 128vtysh_scan =
d7b86ae4 129vtysh_daemons =
94cfb069 130clippy_scan =
4a121f99 131
6a35bfba
DL
132## libtool, the self-made GNU scourge
133## ... this should fix relinking
134## ... and AUTOMAKE_DUMMY is needed to prevent automake from treating this
135## as overriding the normal targets...
136$(AUTOMAKE_DUMMY)install-moduleLTLIBRARIES: install-libLTLIBRARIES
137$(AUTOMAKE_DUMMY)install-binPROGRAMS: install-libLTLIBRARIES
138$(AUTOMAKE_DUMMY)install-sbinPROGRAMS: install-libLTLIBRARIES
139
9e53b315
DL
140include doc/subdir.am
141include doc/user/subdir.am
142include doc/manpages/subdir.am
143include doc/developer/subdir.am
ba777396 144include include/subdir.am
4a121f99 145include lib/subdir.am
67fa73f2 146include mlag/subdir.am
64d44794 147include zebra/subdir.am
bd354725 148include watchfrr/subdir.am
0f8b5fd5
DL
149include qpb/subdir.am
150include fpm/subdir.am
ec2ac5f2 151include grpc/subdir.am
bd354725 152include tools/subdir.am
4a121f99 153
84d837b7
DL
154include bgpd/subdir.am
155include bgpd/rfp-example/librfp/subdir.am
156include bgpd/rfp-example/rfptest/subdir.am
7f269117
DL
157include ripd/subdir.am
158include ripngd/subdir.am
afca0690
DL
159include ospfd/subdir.am
160include ospf6d/subdir.am
161include ospfclient/subdir.am
86e463cf 162include isisd/subdir.am
cde8cd9d 163include nhrpd/subdir.am
30237d29 164include ldpd/subdir.am
b6f5781c
DL
165include babeld/subdir.am
166include eigrpd/subdir.am
8a71d93d 167include sharpd/subdir.am
35a3c3c1 168include pimd/subdir.am
e5c83d9b 169include pbrd/subdir.am
7e24fdf3 170include staticd/subdir.am
7134904b 171include bfdd/subdir.am
1c2facd1
RW
172include yang/subdir.am
173include yang/libyang_plugins/subdir.am
5435a2bf 174include vrrpd/subdir.am
74971473
JG
175include pceplib/subdir.am
176include pceplib/test/subdir.am
4d7b695d 177include pathd/subdir.am
7f269117 178
8b7668ec 179include vtysh/subdir.am
a1286a32 180include tests/subdir.am
ff37641b 181include tests/topotests/subdir.am
718e3744 182
53d93be1
DL
183if PKGSRC
184rcdir=@pkgsrcrcdir@
185rc_SCRIPTS = \
186 pkgsrc/bgpd.sh \
187 pkgsrc/ospf6d.sh \
188 pkgsrc/ospfd.sh \
189 pkgsrc/ripd.sh \
190 pkgsrc/ripngd.sh \
191 pkgsrc/zebra.sh \
192 # end
193endif
194
195EXTRA_DIST += \
53d93be1 196 aclocal.m4 \
d85cb6b6 197 README.md \
53d93be1 198 m4/README.txt \
d6e76257 199 m4/libtool-whole-archive.patch \
06871ed9 200 config.version \
439be082
QY
201 changelog-auto \
202 changelog-auto.in \
53d93be1
DL
203 \
204 python/clidef.py \
205 python/clippy/__init__.py \
36a8fdfd
DL
206 python/clippy/elf.py \
207 python/clippy/uidhash.py \
879a9dc5 208 python/makevars.py \
94cfb069 209 python/makefile.py \
36a8fdfd
DL
210 python/tiabwarfo.py \
211 python/xrelfo.py \
212 python/test_xrelfo.py \
213 python/runtests.py \
214 \
215 python/xrefstructs.json \
53d93be1 216 \
53d93be1
DL
217 redhat/frr.logrotate \
218 redhat/frr.pam \
219 redhat/frr.spec \
53d93be1
DL
220 \
221 snapcraft/snapcraft.yaml \
222 snapcraft/README.snap_build.md \
223 snapcraft/README.usage.md \
224 snapcraft/extra_version_info.txt \
225 snapcraft/scripts \
226 snapcraft/defaults \
227 snapcraft/helpers \
228 snapcraft/snap \
f8948c1e
DL
229 babeld/Makefile \
230 bgpd/Makefile \
231 bgpd/rfp-example/librfp/Makefile \
232 bgpd/rfp-example/rfptest/Makefile \
9e53b315
DL
233 doc/Makefile \
234 doc/developer/Makefile \
235 doc/manpages/Makefile \
236 doc/user/Makefile \
f8948c1e
DL
237 eigrpd/Makefile \
238 fpm/Makefile \
ec2ac5f2 239 grpc/Makefile \
f8948c1e
DL
240 isisd/Makefile \
241 ldpd/Makefile \
242 lib/Makefile \
243 nhrpd/Makefile \
244 ospf6d/Makefile \
245 ospfclient/Makefile \
246 ospfd/Makefile \
247 pbrd/Makefile \
248 pimd/Makefile \
f8948c1e
DL
249 qpb/Makefile \
250 ripd/Makefile \
251 ripngd/Makefile \
252 staticd/Makefile \
253 tests/Makefile \
254 tools/Makefile \
255 vtysh/Makefile \
256 watchfrr/Makefile \
257 zebra/Makefile \
5435a2bf 258 vrrpd/Makefile \
53d93be1 259 # end
0fc42949 260
8fb40377
DL
261AM_V_LLVM_BC = $(am__v_LLVM_BC_$(V))
262am__v_LLVM_BC_ = $(am__v_LLVM_BC_$(AM_DEFAULT_VERBOSITY))
263am__v_LLVM_BC_0 = @echo " LLVM.BC " $@;
264am__v_LLVM_BC_1 =
265
266AM_V_LLVM_LD = $(am__v_LLVM_LD_$(V))
267am__v_LLVM_LD_ = $(am__v_LLVM_LD_$(AM_DEFAULT_VERBOSITY))
268am__v_LLVM_LD_0 = @echo " LLVM.LD " $@;
269am__v_LLVM_LD_1 =
270
271SUFFIXES += .lo.bc .o.bc
272
273.o.o.bc:
274 $(AM_V_LLVM_BC)$(COMPILE) -emit-llvm -c -o $@ $(patsubst %.o,%.c,$<)
275.lo.lo.bc:
276 $(AM_V_LLVM_BC)$(COMPILE) -emit-llvm -c -o $@ $(patsubst %.lo,%.c,$<)
277
278%.cg.json: %.bc tools/frr-llvm-cg
279 tools/frr-llvm-cg -o $@ $<
3d62176b
DL
280%.cg.dot: %.cg.json
281 $(PYTHON) $(top_srcdir)/python/callgraph-dot.py $< $@
282%.cg.svg: %.cg.dot
283 @echo if the following command fails, you need to install graphviz.
284 @echo also, the output is nondeterministic. run it multiple times and use the nicest output.
285 @echo tuning parameters may yield nicer looking graphs as well.
286 fdp -GK=0.7 -Gstart=42231337 -Gmaxiter=2000 -Elen=2 -Gnodesep=1.5 -Tsvg -o$@ $<
287# don't delete intermediaries
288.PRECIOUS: %.cg.json %.cg.dot
8fb40377
DL
289
290# <lib>.la.bc, <lib>.a.bc and <daemon>.bc targets are generated by
291# python/makefile.py
292LLVM_LINK = llvm-link-$(llvm_version)
293
294clean-local: clean-python clean-llvm-bitcode
295.PHONY: clean-python clean-llvm-bitcode
67cf020d 296clean-python:
dbd10c03
RK
297 find . -name __pycache__ -o -name .pytest_cache | xargs rm -rf
298 find . -name "*.pyc" -o -name "*_clippy.c" | xargs rm -f
67cf020d 299
8fb40377 300clean-llvm-bitcode:
3d62176b 301 find . -name "*.bc" -o -name "*.cg.json" -o -name "*.cg.dot" -o -name "*.cg.svg" | xargs rm -f
8fb40377 302
0b9013e4
DL
303redistclean:
304 $(MAKE) distclean CONFIG_CLEAN_FILES="$(filter-out $(EXTRA_DIST), $(CONFIG_CLEAN_FILES))"
305
da5a0d00
LB
306indent:
307 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
308
309if HAVE_GCOV
310
311coverage: check
312 @ find . -name '*.o' -exec gcov {} \;
313
314yorn:
315 @ echo "OK to upload coverage to https://coverage.io [y/N]:"
316 @ read yn; test "$$yn" = "y"
317
318upload-check-coverage:
319 @ if [ "x${COMMIT}" = "x" ]; then echo "COMMIT required"; exit 1; fi
320 @ if [ "x${TOKEN}" = "x" ]; then echo "TOKEN required"; exit 1; fi
321 curl -s https://codecov.io/bash | bash -s - -C ${COMMIT} -t ${TOKEN}
322
323force-check-coverage: coverage upload-check-coverage
324
325check-coverage: coverage yorn upload-check-coverage
326
327endif