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