]> git.proxmox.com Git - mirror_frr.git/blob - Makefile.am
Merge pull request #8693 from idryzhov/fix-bgp-bfd-reg
[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 AM_LDFLAGS = \
33 -export-dynamic \
34 $(AC_LDFLAGS) \
35 $(SAN_FLAGS) \
36 # end
37 DEFS = @DEFS@ -DSYSCONFDIR=\"$(sysconfdir)/\" -DCONFDATE=$(CONFDATE)
38
39 AR_FLAGS = @AR_FLAGS@
40 ARFLAGS = @ARFLAGS@
41 RANLIB = @RANLIB@
42
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-%
51 VARFD ?= 1
52 shvar-%:
53 @echo "$*=\"$($*)\"" >&$(VARFD)
54 var-%:
55 @echo "$($*)" >&$(VARFD)
56
57 if ONLY_CLIPPY
58 .DEFAULT_GOAL := clippy-only
59 endif
60 clippy-only: Makefile lib/clippy config.h
61 .PHONY: clippy-only
62
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
105 EXTRA_DIST =
106 EXTRA_PROGRAMS =
107 BUILT_SOURCES =
108 CLEANFILES =
109 DISTCLEANFILES =
110 SUFFIXES =
111
112 examplesdir = $(exampledir)
113
114 bin_PROGRAMS =
115 sbin_PROGRAMS =
116 sbin_SCRIPTS =
117 noinst_PROGRAMS =
118 noinst_HEADERS =
119 noinst_LIBRARIES =
120 nodist_noinst_DATA =
121 lib_LTLIBRARIES =
122 module_LTLIBRARIES =
123 pkginclude_HEADERS =
124 nodist_pkginclude_HEADERS =
125 dist_examples_DATA =
126 dist_yangmodels_DATA =
127 man_MANS =
128 vtysh_scan =
129 vtysh_daemons =
130 clippy_scan =
131
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
140 include doc/subdir.am
141 include doc/user/subdir.am
142 include doc/manpages/subdir.am
143 include doc/developer/subdir.am
144 include include/subdir.am
145 include lib/subdir.am
146 include mlag/subdir.am
147 include zebra/subdir.am
148 include watchfrr/subdir.am
149 include qpb/subdir.am
150 include fpm/subdir.am
151 include grpc/subdir.am
152 include tools/subdir.am
153
154 include bgpd/subdir.am
155 include bgpd/rfp-example/librfp/subdir.am
156 include bgpd/rfp-example/rfptest/subdir.am
157 include ripd/subdir.am
158 include ripngd/subdir.am
159 include ospfd/subdir.am
160 include ospf6d/subdir.am
161 include ospfclient/subdir.am
162 include isisd/subdir.am
163 include nhrpd/subdir.am
164 include ldpd/subdir.am
165 include babeld/subdir.am
166 include eigrpd/subdir.am
167 include sharpd/subdir.am
168 include pimd/subdir.am
169 include pbrd/subdir.am
170 include staticd/subdir.am
171 include bfdd/subdir.am
172 include yang/subdir.am
173 include yang/libyang_plugins/subdir.am
174 include vrrpd/subdir.am
175 include pceplib/subdir.am
176 include pceplib/test/subdir.am
177 include pathd/subdir.am
178
179 include vtysh/subdir.am
180 include tests/subdir.am
181 include tests/topotests/subdir.am
182
183 if PKGSRC
184 rcdir=@pkgsrcrcdir@
185 rc_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
193 endif
194
195 EXTRA_DIST += \
196 aclocal.m4 \
197 README.md \
198 m4/README.txt \
199 m4/libtool-whole-archive.patch \
200 config.version \
201 changelog-auto \
202 changelog-auto.in \
203 \
204 python/clidef.py \
205 python/clippy/__init__.py \
206 python/clippy/elf.py \
207 python/clippy/uidhash.py \
208 python/makevars.py \
209 python/makefile.py \
210 python/tiabwarfo.py \
211 python/xrelfo.py \
212 python/test_xrelfo.py \
213 python/runtests.py \
214 \
215 python/xrefstructs.json \
216 \
217 redhat/frr.logrotate \
218 redhat/frr.pam \
219 redhat/frr.spec \
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 \
229 babeld/Makefile \
230 bgpd/Makefile \
231 bgpd/rfp-example/librfp/Makefile \
232 bgpd/rfp-example/rfptest/Makefile \
233 doc/Makefile \
234 doc/developer/Makefile \
235 doc/manpages/Makefile \
236 doc/user/Makefile \
237 eigrpd/Makefile \
238 fpm/Makefile \
239 grpc/Makefile \
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 \
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 \
258 vrrpd/Makefile \
259 # end
260
261 AM_V_LLVM_BC = $(am__v_LLVM_BC_$(V))
262 am__v_LLVM_BC_ = $(am__v_LLVM_BC_$(AM_DEFAULT_VERBOSITY))
263 am__v_LLVM_BC_0 = @echo " LLVM.BC " $@;
264 am__v_LLVM_BC_1 =
265
266 AM_V_LLVM_LD = $(am__v_LLVM_LD_$(V))
267 am__v_LLVM_LD_ = $(am__v_LLVM_LD_$(AM_DEFAULT_VERBOSITY))
268 am__v_LLVM_LD_0 = @echo " LLVM.LD " $@;
269 am__v_LLVM_LD_1 =
270
271 SUFFIXES += .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 $@ $<
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
289
290 # <lib>.la.bc, <lib>.a.bc and <daemon>.bc targets are generated by
291 # python/makefile.py
292 LLVM_LINK = llvm-link-$(llvm_version)
293
294 clean-local: clean-python clean-llvm-bitcode
295 .PHONY: clean-python clean-llvm-bitcode
296 clean-python:
297 find . -name __pycache__ -o -name .pytest_cache | xargs rm -rf
298 find . -name "*.pyc" -o -name "*_clippy.c" | xargs rm -f
299
300 clean-llvm-bitcode:
301 find . -name "*.bc" -o -name "*.cg.json" -o -name "*.cg.dot" -o -name "*.cg.svg" | xargs rm -f
302
303 redistclean:
304 $(MAKE) distclean CONFIG_CLEAN_FILES="$(filter-out $(EXTRA_DIST), $(CONFIG_CLEAN_FILES))"
305
306 indent:
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`
308
309 if HAVE_GCOV
310
311 coverage: check
312 @ find . -name '*.o' -exec gcov {} \;
313
314 yorn:
315 @ echo "OK to upload coverage to https://coverage.io [y/N]:"
316 @ read yn; test "$$yn" = "y"
317
318 upload-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
323 force-check-coverage: coverage upload-check-coverage
324
325 check-coverage: coverage yorn upload-check-coverage
326
327 endif