]> git.proxmox.com Git - mirror_frr.git/blob - Makefile.am
Merge pull request #3998 from pguibert6WIND/workflow_bug_fixes_older
[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
5
6 AM_CFLAGS = \
7 $(LIBYANG_CFLAGS) \
8 $(SQLITE3_CFLAGS) \
9 $(UNWIND_CFLAGS) \
10 $(SAN_FLAGS) \
11 $(WERROR) \
12 # end
13 AM_CPPFLAGS = \
14 -I$(top_srcdir) -I$(top_srcdir)/include -I$(top_srcdir)/lib \
15 -I$(top_builddir) -I$(top_builddir)/include -I$(top_builddir)/lib
16 AM_LDFLAGS = \
17 -export-dynamic \
18 $(AC_LDFLAGS) \
19 $(SAN_FLAGS) \
20 # end
21 DEFS = @DEFS@ -DSYSCONFDIR=\"$(sysconfdir)/\" -DCONFDATE=$(CONFDATE)
22
23 AR_FLAGS = @AR_FLAGS@
24 ARFLAGS = @ARFLAGS@
25 RANLIB = @RANLIB@
26
27 # these two targets are provided to easily grab autoconf/Makefile variables
28 # you can use either:
29 # eval `make VARFD=3 shvar-CFLAGS 3>&1 1>&2`
30 # CFLAGS="`make VARFD=3 var-CFLAGS 3>&1 1>&2`"
31 # where the former can be used to set several variables at once. Note the
32 # fd redirections -- this is to prevent garbage from make rebuilding other
33 # targets from causing issues.
34 .PHONY: shvar-% var-%
35 VARFD ?= 1
36 shvar-%:
37 @echo "$*=\"$($*)\"" >&$(VARFD)
38 var-%:
39 @echo "$($*)" >&$(VARFD)
40
41 # overwriting these vars breaks cross-compilation. let's be helpful and warn.
42 #
43 # note: "#AUTODERP# " will be removed from Makefile by configure. These are
44 # GNU make directives & automake will f*ck them up by trying to process them
45 # as automake directives.
46 #
47 #AUTODERP# null=
48 #AUTODERP# SPACE=$(null) $(null)
49 #AUTODERP# mkcheck_CC = $(findstring $(SPACE)CC=, $(SPACE)$(MAKEOVERRIDES))
50 #AUTODERP# mkcheck_CFLAGS = $(findstring $(SPACE)CFLAGS=, $(SPACE)$(MAKEOVERRIDES))
51 #AUTODERP# mkcheck_CPPFLAGS = $(findstring $(SPACE)CPPFLAGS=,$(SPACE)$(MAKEOVERRIDES))
52 #AUTODERP# mkcheck_CCLD = $(findstring $(SPACE)CCLD=, $(SPACE)$(MAKEOVERRIDES))
53 #AUTODERP# mkcheck_LD = $(findstring $(SPACE)LD=, $(SPACE)$(MAKEOVERRIDES))
54 #AUTODERP# mkcheck_LDFLAGS = $(findstring $(SPACE)LDFLAGS=, $(SPACE)$(MAKEOVERRIDES))
55 #AUTODERP# #
56 #AUTODERP# ifneq ($(mkcheck_CC),)
57 #AUTODERP# $(warning WARNING: you have overwritten the "CC" variable on the make command line.)
58 #AUTODERP# endif
59 #AUTODERP# ifneq ($(mkcheck_CFLAGS),)
60 #AUTODERP# $(warning WARNING: you have overwritten the "CFLAGS" variable on the make command line.)
61 #AUTODERP# endif
62 #AUTODERP# ifneq ($(mkcheck_CPPFLAGS),)
63 #AUTODERP# $(warning WARNING: you have overwritten the "CPPFLAGS" variable on the make command line.)
64 #AUTODERP# endif
65 #AUTODERP# ifneq ($(mkcheck_CCLD),)
66 #AUTODERP# $(warning WARNING: you have overwritten the "CCLD" variable on the make command line.)
67 #AUTODERP# endif
68 #AUTODERP# ifneq ($(mkcheck_LD),)
69 #AUTODERP# $(warning WARNING: you have overwritten the "LD" variable on the make command line.)
70 #AUTODERP# endif
71 #AUTODERP# ifneq ($(mkcheck_LDFLAGS),)
72 #AUTODERP# $(warning WARNING: you have overwritten the "LDFLAGS" variable on the make command line.)
73 #AUTODERP# endif
74 #AUTODERP# #
75 #AUTODERP# ifneq ($(mkcheck_CC)$(mkcheck_CFLAGS)$(mkcheck_CPPFLAGS)$(mkcheck_CCLD)$(mkcheck_LD)$(mkcheck_LDFLAGS),)
76 #AUTODERP# $(warning ------)
77 #AUTODERP# $(warning While overwriting these variables works most of the time, it is not recommended and can cause confusing build errors.)
78 #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.)
79 #AUTODERP# $(warning All of these variables should be supplied to 'configure', and they will be remembered and correctly applied during 'make'.)
80 #AUTODERP# $(warning ------)
81 #AUTODERP# endif
82
83 EXTRA_DIST =
84 BUILT_SOURCES =
85 CLEANFILES =
86 DISTCLEANFILES =
87
88 examplesdir = $(exampledir)
89
90 bin_PROGRAMS =
91 sbin_PROGRAMS =
92 sbin_SCRIPTS =
93 noinst_PROGRAMS =
94 noinst_HEADERS =
95 noinst_LIBRARIES =
96 nodist_noinst_DATA =
97 lib_LTLIBRARIES =
98 module_LTLIBRARIES =
99 libyang_plugins_LTLIBRARIES =
100 pkginclude_HEADERS =
101 nodist_pkginclude_HEADERS =
102 dist_examples_DATA =
103 dist_yangmodels_DATA =
104 man_MANS =
105 vtysh_scan =
106
107 ## libtool, the self-made GNU scourge
108 ## ... this should fix relinking
109 ## ... and AUTOMAKE_DUMMY is needed to prevent automake from treating this
110 ## as overriding the normal targets...
111 $(AUTOMAKE_DUMMY)install-moduleLTLIBRARIES: install-libLTLIBRARIES
112 $(AUTOMAKE_DUMMY)install-binPROGRAMS: install-libLTLIBRARIES
113 $(AUTOMAKE_DUMMY)install-sbinPROGRAMS: install-libLTLIBRARIES
114 $(AUTOMAKE_DUMMY)install-libyang_pluginsLTLIBRARIES: install-libLTLIBRARIES
115
116 include doc/subdir.am
117 include doc/user/subdir.am
118 include doc/manpages/subdir.am
119 include doc/developer/subdir.am
120 include include/subdir.am
121 include lib/subdir.am
122 include zebra/subdir.am
123 include watchfrr/subdir.am
124 include qpb/subdir.am
125 include fpm/subdir.am
126 include tools/subdir.am
127 include solaris/subdir.am
128
129 include bgpd/subdir.am
130 include bgpd/rfp-example/librfp/subdir.am
131 include bgpd/rfp-example/rfptest/subdir.am
132 include ripd/subdir.am
133 include ripngd/subdir.am
134 include ospfd/subdir.am
135 include ospf6d/subdir.am
136 include ospfclient/subdir.am
137 include isisd/subdir.am
138 include nhrpd/subdir.am
139 include ldpd/subdir.am
140 include babeld/subdir.am
141 include eigrpd/subdir.am
142 include sharpd/subdir.am
143 include pimd/subdir.am
144 include pbrd/subdir.am
145 include staticd/subdir.am
146 include bfdd/subdir.am
147 include yang/subdir.am
148 include yang/libyang_plugins/subdir.am
149
150 include vtysh/subdir.am
151 include tests/subdir.am
152 include tests/topotests/subdir.am
153
154 if PKGSRC
155 rcdir=@pkgsrcrcdir@
156 rc_SCRIPTS = \
157 pkgsrc/bgpd.sh \
158 pkgsrc/ospf6d.sh \
159 pkgsrc/ospfd.sh \
160 pkgsrc/ripd.sh \
161 pkgsrc/ripngd.sh \
162 pkgsrc/zebra.sh \
163 # end
164 endif
165
166 EXTRA_DIST += \
167 aclocal.m4 \
168 README.md \
169 m4/README.txt \
170 m4/libtool-whole-archive.patch \
171 config.version \
172 changelog-auto \
173 changelog-auto.in \
174 \
175 python/clidef.py \
176 python/clippy/__init__.py \
177 \
178 redhat/frr.logrotate \
179 redhat/frr.pam \
180 redhat/frr.spec \
181 \
182 snapcraft/snapcraft.yaml \
183 snapcraft/README.snap_build.md \
184 snapcraft/README.usage.md \
185 snapcraft/extra_version_info.txt \
186 snapcraft/scripts \
187 snapcraft/defaults \
188 snapcraft/helpers \
189 snapcraft/snap \
190 \
191 babeld/Makefile \
192 bgpd/Makefile \
193 bgpd/rfp-example/librfp/Makefile \
194 bgpd/rfp-example/rfptest/Makefile \
195 doc/Makefile \
196 doc/developer/Makefile \
197 doc/manpages/Makefile \
198 doc/user/Makefile \
199 eigrpd/Makefile \
200 fpm/Makefile \
201 isisd/Makefile \
202 ldpd/Makefile \
203 lib/Makefile \
204 nhrpd/Makefile \
205 ospf6d/Makefile \
206 ospfclient/Makefile \
207 ospfd/Makefile \
208 pbrd/Makefile \
209 pimd/Makefile \
210 ports/Makefile \
211 qpb/Makefile \
212 ripd/Makefile \
213 ripngd/Makefile \
214 staticd/Makefile \
215 tests/Makefile \
216 tools/Makefile \
217 vtysh/Makefile \
218 watchfrr/Makefile \
219 zebra/Makefile \
220 # end
221
222 noinst_HEADERS += defaults.h
223
224 clean-local: clean-python
225 .PHONY: clean-python
226 clean-python:
227 find . -name __pycache__ -o -name .pytest_cache | xargs rm -rf
228 find . -name "*.pyc" -o -name "*_clippy.c" | xargs rm -f
229
230 redistclean:
231 $(MAKE) distclean CONFIG_CLEAN_FILES="$(filter-out $(EXTRA_DIST), $(CONFIG_CLEAN_FILES))"
232
233 indent:
234 tools/indent.py `find sharpd bgpd eigrpd include isisd lib nhrpd ospf6d ospfd pimd qpb ripd vtysh zebra -name '*.[ch]' | grep -v include/linux`
235
236 if HAVE_GCOV
237
238 coverage: check
239 @ find . -name '*.o' -exec gcov {} \;
240
241 yorn:
242 @ echo "OK to upload coverage to https://coverage.io [y/N]:"
243 @ read yn; test "$$yn" = "y"
244
245 upload-check-coverage:
246 @ if [ "x${COMMIT}" = "x" ]; then echo "COMMIT required"; exit 1; fi
247 @ if [ "x${TOKEN}" = "x" ]; then echo "TOKEN required"; exit 1; fi
248 curl -s https://codecov.io/bash | bash -s - -C ${COMMIT} -t ${TOKEN}
249
250 force-check-coverage: coverage upload-check-coverage
251
252 check-coverage: coverage yorn upload-check-coverage
253
254 endif