]> git.proxmox.com Git - mirror_frr.git/blob - Makefile.am
Merge pull request #2946 from mjstapp/dplane_2
[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 $(UNWIND_CFLAGS) \
8 $(SAN_FLAGS) \
9 $(WERROR) \
10 # end
11 AM_CPPFLAGS = \
12 -I$(top_srcdir) -I$(top_srcdir)/include -I$(top_srcdir)/lib \
13 -I$(top_builddir) -I$(top_builddir)/include -I$(top_builddir)/lib
14 AM_LDFLAGS = \
15 -export-dynamic \
16 $(AC_LDFLAGS) \
17 $(SAN_FLAGS) \
18 # end
19 DEFS = @DEFS@ -DSYSCONFDIR=\"$(sysconfdir)/\" -DCONFDATE=$(CONFDATE)
20 LIBCAP = @LIBCAP@
21
22 AR_FLAGS = @AR_FLAGS@
23 ARFLAGS = @ARFLAGS@
24 RANLIB = @RANLIB@
25
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-%
34 VARFD ?= 1
35 shvar-%:
36 @echo "$*=\"$($*)\"" >&$(VARFD)
37 var-%:
38 @echo "$($*)" >&$(VARFD)
39
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
82 EXTRA_DIST =
83 BUILT_SOURCES =
84 CLEANFILES =
85 DISTCLEANFILES =
86
87 examplesdir = $(exampledir)
88
89 bin_PROGRAMS =
90 sbin_PROGRAMS =
91 sbin_SCRIPTS =
92 noinst_PROGRAMS =
93 noinst_HEADERS =
94 noinst_LIBRARIES =
95 nodist_noinst_DATA =
96 lib_LTLIBRARIES =
97 module_LTLIBRARIES =
98 pkginclude_HEADERS =
99 nodist_pkginclude_HEADERS =
100 dist_examples_DATA =
101 man_MANS =
102 vtysh_scan =
103
104 ## libtool, the self-made GNU scourge
105 ## ... this should fix relinking
106 ## ... and AUTOMAKE_DUMMY is needed to prevent automake from treating this
107 ## as overriding the normal targets...
108 $(AUTOMAKE_DUMMY)install-moduleLTLIBRARIES: install-libLTLIBRARIES
109 $(AUTOMAKE_DUMMY)install-binPROGRAMS: install-libLTLIBRARIES
110 $(AUTOMAKE_DUMMY)install-sbinPROGRAMS: install-libLTLIBRARIES
111
112 include doc/subdir.am
113 include doc/user/subdir.am
114 include doc/manpages/subdir.am
115 include doc/developer/subdir.am
116 include include/subdir.am
117 include lib/subdir.am
118 include zebra/subdir.am
119 include watchfrr/subdir.am
120 include qpb/subdir.am
121 include fpm/subdir.am
122 include tools/subdir.am
123 include debianpkg/subdir.am
124 include solaris/subdir.am
125
126 include bgpd/subdir.am
127 include bgpd/rfp-example/librfp/subdir.am
128 include bgpd/rfp-example/rfptest/subdir.am
129 include ripd/subdir.am
130 include ripngd/subdir.am
131 include ospfd/subdir.am
132 include ospf6d/subdir.am
133 include ospfclient/subdir.am
134 include isisd/subdir.am
135 include nhrpd/subdir.am
136 include ldpd/subdir.am
137 include babeld/subdir.am
138 include eigrpd/subdir.am
139 include sharpd/subdir.am
140 include pimd/subdir.am
141 include pbrd/subdir.am
142 include staticd/subdir.am
143 include bfdd/subdir.am
144
145 include vtysh/subdir.am
146 include tests/subdir.am
147
148 if PKGSRC
149 rcdir=@pkgsrcrcdir@
150 rc_SCRIPTS = \
151 pkgsrc/bgpd.sh \
152 pkgsrc/ospf6d.sh \
153 pkgsrc/ospfd.sh \
154 pkgsrc/ripd.sh \
155 pkgsrc/ripngd.sh \
156 pkgsrc/zebra.sh \
157 # end
158 endif
159
160 EXTRA_DIST += \
161 aclocal.m4 \
162 README.md \
163 m4/README.txt \
164 m4/libtool-whole-archive.patch \
165 config.version \
166 \
167 python/clidef.py \
168 python/clippy/__init__.py \
169 \
170 redhat/frr.init \
171 redhat/frr.service \
172 redhat/daemons \
173 redhat/frr.logrotate \
174 redhat/frr.pam \
175 redhat/frr.spec \
176 redhat/README.rpm_build.md \
177 \
178 snapcraft/snapcraft.yaml \
179 snapcraft/README.snap_build.md \
180 snapcraft/README.usage.md \
181 snapcraft/extra_version_info.txt \
182 snapcraft/scripts \
183 snapcraft/defaults \
184 snapcraft/helpers \
185 snapcraft/snap \
186 \
187 babeld/Makefile \
188 bgpd/Makefile \
189 bgpd/rfp-example/librfp/Makefile \
190 bgpd/rfp-example/rfptest/Makefile \
191 doc/Makefile \
192 doc/developer/Makefile \
193 doc/manpages/Makefile \
194 doc/user/Makefile \
195 eigrpd/Makefile \
196 fpm/Makefile \
197 isisd/Makefile \
198 ldpd/Makefile \
199 lib/Makefile \
200 nhrpd/Makefile \
201 ospf6d/Makefile \
202 ospfclient/Makefile \
203 ospfd/Makefile \
204 pbrd/Makefile \
205 pimd/Makefile \
206 ports/Makefile \
207 qpb/Makefile \
208 ripd/Makefile \
209 ripngd/Makefile \
210 staticd/Makefile \
211 tests/Makefile \
212 tools/Makefile \
213 vtysh/Makefile \
214 watchfrr/Makefile \
215 zebra/Makefile \
216 # end
217
218 noinst_HEADERS += defaults.h
219
220 clean-local: clean-python
221 .PHONY: clean-python
222 clean-python:
223 find -name __pycache__ -o -name .pytest_cache | xargs rm -rf
224 find -name "*.pyc" -o -name "*_clippy.c" | xargs rm -f
225
226 redistclean:
227 $(MAKE) distclean CONFIG_CLEAN_FILES="$(filter-out $(EXTRA_DIST), $(CONFIG_CLEAN_FILES))"
228
229 indent:
230 tools/indent.py `find sharpd bgpd eigrpd include isisd lib nhrpd ospf6d ospfd pimd qpb ripd vtysh zebra -name '*.[ch]' | grep -v include/linux`
231
232 if HAVE_GCOV
233
234 coverage: check
235 @ find . -name '*.o' -exec gcov {} \;
236
237 yorn:
238 @ echo "OK to upload coverage to https://coverage.io [y/N]:"
239 @ read yn; test "$$yn" = "y"
240
241 upload-check-coverage:
242 @ if [ "x${COMMIT}" = "x" ]; then echo "COMMIT required"; exit 1; fi
243 @ if [ "x${TOKEN}" = "x" ]; then echo "TOKEN required"; exit 1; fi
244 curl -s https://codecov.io/bash | bash -s - -C ${COMMIT} -t ${TOKEN}
245
246 force-check-coverage: coverage upload-check-coverage
247
248 check-coverage: coverage yorn upload-check-coverage
249
250 endif