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