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