]> git.proxmox.com Git - mirror_frr.git/blob - Makefile.am
Merge pull request #8406 from adharkar/frr-es_rd
[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
15 # CPPFLAGS_BASE does not contain the include path for overriding assert.h,
16 # therefore should be used in tools that do *not* link libfrr or do not want
17 # assert() overridden
18 CPPFLAGS_BASE = \
19 -I$(top_srcdir) -I$(top_srcdir)/include -I$(top_srcdir)/lib \
20 -I$(top_builddir) \
21 $(LUA_INCLUDE) \
22 # end
23 AM_CPPFLAGS = \
24 -I$(top_srcdir)/lib/assert \
25 $(CPPFLAGS_BASE) \
26 # end
27 AM_LDFLAGS = \
28 -export-dynamic \
29 $(AC_LDFLAGS) \
30 $(SAN_FLAGS) \
31 # end
32 DEFS = @DEFS@ -DSYSCONFDIR=\"$(sysconfdir)/\" -DCONFDATE=$(CONFDATE)
33
34 AR_FLAGS = @AR_FLAGS@
35 ARFLAGS = @ARFLAGS@
36 RANLIB = @RANLIB@
37
38 # these two targets are provided to easily grab autoconf/Makefile variables
39 # you can use either:
40 # eval `make VARFD=3 shvar-CFLAGS 3>&1 1>&2`
41 # CFLAGS="`make VARFD=3 var-CFLAGS 3>&1 1>&2`"
42 # where the former can be used to set several variables at once. Note the
43 # fd redirections -- this is to prevent garbage from make rebuilding other
44 # targets from causing issues.
45 .PHONY: shvar-% var-%
46 VARFD ?= 1
47 shvar-%:
48 @echo "$*=\"$($*)\"" >&$(VARFD)
49 var-%:
50 @echo "$($*)" >&$(VARFD)
51
52 if ONLY_CLIPPY
53 .DEFAULT_GOAL := clippy-only
54 endif
55 clippy-only: Makefile lib/clippy config.h
56 .PHONY: clippy-only
57
58 # overwriting these vars breaks cross-compilation. let's be helpful and warn.
59 #
60 # note: "#AUTODERP# " will be removed from Makefile by configure. These are
61 # GNU make directives & automake will f*ck them up by trying to process them
62 # as automake directives.
63 #
64 #AUTODERP# null=
65 #AUTODERP# SPACE=$(null) $(null)
66 #AUTODERP# mkcheck_CC = $(findstring $(SPACE)CC=, $(SPACE)$(MAKEOVERRIDES))
67 #AUTODERP# mkcheck_CFLAGS = $(findstring $(SPACE)CFLAGS=, $(SPACE)$(MAKEOVERRIDES))
68 #AUTODERP# mkcheck_CPPFLAGS = $(findstring $(SPACE)CPPFLAGS=,$(SPACE)$(MAKEOVERRIDES))
69 #AUTODERP# mkcheck_CCLD = $(findstring $(SPACE)CCLD=, $(SPACE)$(MAKEOVERRIDES))
70 #AUTODERP# mkcheck_LD = $(findstring $(SPACE)LD=, $(SPACE)$(MAKEOVERRIDES))
71 #AUTODERP# mkcheck_LDFLAGS = $(findstring $(SPACE)LDFLAGS=, $(SPACE)$(MAKEOVERRIDES))
72 #AUTODERP# #
73 #AUTODERP# ifneq ($(mkcheck_CC),)
74 #AUTODERP# $(warning WARNING: you have overwritten the "CC" variable on the make command line.)
75 #AUTODERP# endif
76 #AUTODERP# ifneq ($(mkcheck_CFLAGS),)
77 #AUTODERP# $(warning WARNING: you have overwritten the "CFLAGS" variable on the make command line.)
78 #AUTODERP# endif
79 #AUTODERP# ifneq ($(mkcheck_CPPFLAGS),)
80 #AUTODERP# $(warning WARNING: you have overwritten the "CPPFLAGS" variable on the make command line.)
81 #AUTODERP# endif
82 #AUTODERP# ifneq ($(mkcheck_CCLD),)
83 #AUTODERP# $(warning WARNING: you have overwritten the "CCLD" variable on the make command line.)
84 #AUTODERP# endif
85 #AUTODERP# ifneq ($(mkcheck_LD),)
86 #AUTODERP# $(warning WARNING: you have overwritten the "LD" variable on the make command line.)
87 #AUTODERP# endif
88 #AUTODERP# ifneq ($(mkcheck_LDFLAGS),)
89 #AUTODERP# $(warning WARNING: you have overwritten the "LDFLAGS" variable on the make command line.)
90 #AUTODERP# endif
91 #AUTODERP# #
92 #AUTODERP# ifneq ($(mkcheck_CC)$(mkcheck_CFLAGS)$(mkcheck_CPPFLAGS)$(mkcheck_CCLD)$(mkcheck_LD)$(mkcheck_LDFLAGS),)
93 #AUTODERP# $(warning ------)
94 #AUTODERP# $(warning While overwriting these variables works most of the time, it is not recommended and can cause confusing build errors.)
95 #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.)
96 #AUTODERP# $(warning All of these variables should be supplied to 'configure', and they will be remembered and correctly applied during 'make'.)
97 #AUTODERP# $(warning ------)
98 #AUTODERP# endif
99
100 EXTRA_DIST =
101 EXTRA_PROGRAMS =
102 BUILT_SOURCES =
103 CLEANFILES =
104 DISTCLEANFILES =
105 SUFFIXES =
106
107 examplesdir = $(exampledir)
108
109 bin_PROGRAMS =
110 sbin_PROGRAMS =
111 sbin_SCRIPTS =
112 noinst_PROGRAMS =
113 noinst_HEADERS =
114 noinst_LIBRARIES =
115 nodist_noinst_DATA =
116 lib_LTLIBRARIES =
117 module_LTLIBRARIES =
118 pkginclude_HEADERS =
119 nodist_pkginclude_HEADERS =
120 dist_examples_DATA =
121 dist_yangmodels_DATA =
122 man_MANS =
123 vtysh_scan =
124 vtysh_daemons =
125 clippy_scan =
126
127 ## libtool, the self-made GNU scourge
128 ## ... this should fix relinking
129 ## ... and AUTOMAKE_DUMMY is needed to prevent automake from treating this
130 ## as overriding the normal targets...
131 $(AUTOMAKE_DUMMY)install-moduleLTLIBRARIES: install-libLTLIBRARIES
132 $(AUTOMAKE_DUMMY)install-binPROGRAMS: install-libLTLIBRARIES
133 $(AUTOMAKE_DUMMY)install-sbinPROGRAMS: install-libLTLIBRARIES
134
135 include doc/subdir.am
136 include doc/user/subdir.am
137 include doc/manpages/subdir.am
138 include doc/developer/subdir.am
139 include include/subdir.am
140 include lib/subdir.am
141 include mlag/subdir.am
142 include zebra/subdir.am
143 include watchfrr/subdir.am
144 include qpb/subdir.am
145 include fpm/subdir.am
146 include grpc/subdir.am
147 include tools/subdir.am
148
149 include bgpd/subdir.am
150 include bgpd/rfp-example/librfp/subdir.am
151 include bgpd/rfp-example/rfptest/subdir.am
152 include ripd/subdir.am
153 include ripngd/subdir.am
154 include ospfd/subdir.am
155 include ospf6d/subdir.am
156 include ospfclient/subdir.am
157 include isisd/subdir.am
158 include nhrpd/subdir.am
159 include ldpd/subdir.am
160 include babeld/subdir.am
161 include eigrpd/subdir.am
162 include sharpd/subdir.am
163 include pimd/subdir.am
164 include pbrd/subdir.am
165 include staticd/subdir.am
166 include bfdd/subdir.am
167 include yang/subdir.am
168 include yang/libyang_plugins/subdir.am
169 include vrrpd/subdir.am
170 include pceplib/subdir.am
171 include pceplib/test/subdir.am
172 include pathd/subdir.am
173
174 include vtysh/subdir.am
175 include tests/subdir.am
176 include tests/topotests/subdir.am
177
178 if PKGSRC
179 rcdir=@pkgsrcrcdir@
180 rc_SCRIPTS = \
181 pkgsrc/bgpd.sh \
182 pkgsrc/ospf6d.sh \
183 pkgsrc/ospfd.sh \
184 pkgsrc/ripd.sh \
185 pkgsrc/ripngd.sh \
186 pkgsrc/zebra.sh \
187 # end
188 endif
189
190 EXTRA_DIST += \
191 aclocal.m4 \
192 README.md \
193 m4/README.txt \
194 m4/libtool-whole-archive.patch \
195 config.version \
196 changelog-auto \
197 changelog-auto.in \
198 \
199 python/clidef.py \
200 python/clippy/__init__.py \
201 python/clippy/elf.py \
202 python/clippy/uidhash.py \
203 python/makevars.py \
204 python/makefile.py \
205 python/tiabwarfo.py \
206 python/xrelfo.py \
207 python/test_xrelfo.py \
208 python/runtests.py \
209 \
210 python/xrefstructs.json \
211 \
212 redhat/frr.logrotate \
213 redhat/frr.pam \
214 redhat/frr.spec \
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 \
224 babeld/Makefile \
225 bgpd/Makefile \
226 bgpd/rfp-example/librfp/Makefile \
227 bgpd/rfp-example/rfptest/Makefile \
228 doc/Makefile \
229 doc/developer/Makefile \
230 doc/manpages/Makefile \
231 doc/user/Makefile \
232 eigrpd/Makefile \
233 fpm/Makefile \
234 grpc/Makefile \
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 \
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 \
253 vrrpd/Makefile \
254 # end
255
256 AM_V_LLVM_BC = $(am__v_LLVM_BC_$(V))
257 am__v_LLVM_BC_ = $(am__v_LLVM_BC_$(AM_DEFAULT_VERBOSITY))
258 am__v_LLVM_BC_0 = @echo " LLVM.BC " $@;
259 am__v_LLVM_BC_1 =
260
261 AM_V_LLVM_LD = $(am__v_LLVM_LD_$(V))
262 am__v_LLVM_LD_ = $(am__v_LLVM_LD_$(AM_DEFAULT_VERBOSITY))
263 am__v_LLVM_LD_0 = @echo " LLVM.LD " $@;
264 am__v_LLVM_LD_1 =
265
266 SUFFIXES += .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 $@ $<
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
284
285 # <lib>.la.bc, <lib>.a.bc and <daemon>.bc targets are generated by
286 # python/makefile.py
287 LLVM_LINK = llvm-link-$(llvm_version)
288
289 clean-local: clean-python clean-llvm-bitcode
290 .PHONY: clean-python clean-llvm-bitcode
291 clean-python:
292 find . -name __pycache__ -o -name .pytest_cache | xargs rm -rf
293 find . -name "*.pyc" -o -name "*_clippy.c" | xargs rm -f
294
295 clean-llvm-bitcode:
296 find . -name "*.bc" -o -name "*.cg.json" -o -name "*.cg.dot" -o -name "*.cg.svg" | xargs rm -f
297
298 redistclean:
299 $(MAKE) distclean CONFIG_CLEAN_FILES="$(filter-out $(EXTRA_DIST), $(CONFIG_CLEAN_FILES))"
300
301 indent:
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`
303
304 if HAVE_GCOV
305
306 coverage: check
307 @ find . -name '*.o' -exec gcov {} \;
308
309 yorn:
310 @ echo "OK to upload coverage to https://coverage.io [y/N]:"
311 @ read yn; test "$$yn" = "y"
312
313 upload-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
318 force-check-coverage: coverage upload-check-coverage
319
320 check-coverage: coverage yorn upload-check-coverage
321
322 endif