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