]> git.proxmox.com Git - mirror_frr.git/blame - Makefile.am
Merge pull request #2875 from opensourcerouting/fabricd
[mirror_frr.git] / Makefile.am
CommitLineData
718e3744 1## Process this file with automake to produce Makefile.in.
2
4a121f99
DL
3AUTOMAKE_OPTIONS = subdir-objects 1.12
4include common.am
5
e9f272a4 6AM_CPPFLAGS += -I$(top_srcdir) -I$(top_srcdir)/include -I$(top_srcdir)/lib \
ba777396 7 -I$(top_builddir) -I$(top_builddir)/include -I$(top_builddir)/lib
62d21cc6 8DEFS = @DEFS@ -DSYSCONFDIR=\"$(sysconfdir)/\" -DCONFDATE=$(CONFDATE)
64d44794 9LIBCAP = @LIBCAP@
4a121f99 10
b8dd5f9d
DL
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-%
19VARFD ?= 1
20shvar-%:
21 @echo "$*=\"$($*)\"" >&$(VARFD)
22var-%:
23 @echo "$($*)" >&$(VARFD)
24
892d21b1
DL
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
4a121f99
DL
67EXTRA_DIST =
68BUILT_SOURCES =
0f8b5fd5 69CLEANFILES =
4a121f99 70
64d44794
DL
71examplesdir = $(exampledir)
72
4a121f99
DL
73bin_PROGRAMS =
74sbin_PROGRAMS =
bd354725 75sbin_SCRIPTS =
4a121f99
DL
76noinst_PROGRAMS =
77noinst_HEADERS =
78noinst_LIBRARIES =
9e53b315 79nodist_noinst_DATA =
4a121f99 80lib_LTLIBRARIES =
64d44794 81module_LTLIBRARIES =
4a121f99 82pkginclude_HEADERS =
70d27c5b 83nodist_pkginclude_HEADERS =
64d44794 84dist_examples_DATA =
9e53b315 85man_MANS =
4a121f99 86
6a35bfba
DL
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
9e53b315
DL
95include doc/subdir.am
96include doc/user/subdir.am
97include doc/manpages/subdir.am
98include doc/developer/subdir.am
ba777396 99include include/subdir.am
4a121f99 100include lib/subdir.am
64d44794 101include zebra/subdir.am
bd354725 102include watchfrr/subdir.am
0f8b5fd5
DL
103include qpb/subdir.am
104include fpm/subdir.am
bd354725 105include tools/subdir.am
0d0812a4 106include debianpkg/subdir.am
e3863245 107include solaris/subdir.am
4a121f99 108
7f269117
DL
109include ripd/subdir.am
110include ripngd/subdir.am
afca0690
DL
111include ospfd/subdir.am
112include ospf6d/subdir.am
113include ospfclient/subdir.am
86e463cf 114include isisd/subdir.am
cde8cd9d 115include nhrpd/subdir.am
30237d29 116include ldpd/subdir.am
b6f5781c
DL
117include babeld/subdir.am
118include eigrpd/subdir.am
8a71d93d 119include sharpd/subdir.am
35a3c3c1 120include pimd/subdir.am
e5c83d9b 121include pbrd/subdir.am
7e24fdf3 122include staticd/subdir.am
7134904b 123include bfdd/subdir.am
7f269117 124
0f8b5fd5 125SUBDIRS = . @LIBRFP@ @RFPTEST@ \
30237d29 126 @BGPD@ \
9e53b315 127 @VTYSH@ \
e3863245 128 tests
0537f4e7 129
30237d29 130DIST_SUBDIRS = . bgpd \
9e53b315 131 vtysh tests \
e3863245 132 bgpd/rfp-example/librfp \
bd354725 133 bgpd/rfp-example/rfptest \
5578a14d 134 # end
718e3744 135
53d93be1
DL
136if PKGSRC
137rcdir=@pkgsrcrcdir@
138rc_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
146endif
147
148EXTRA_DIST += \
53d93be1 149 aclocal.m4 \
53d93be1
DL
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 \
53d93be1
DL
172 vtysh/Makefile.am \
173 vtysh/Makefile.in \
9e53b315
DL
174 \
175 doc/Makefile \
176 doc/developer/Makefile \
177 doc/manpages/Makefile \
178 doc/user/Makefile \
53d93be1 179 # end
0fc42949 180
72e2d828 181ACLOCAL_AMFLAGS = -I m4
8efe88ea 182
4a121f99 183noinst_HEADERS += defaults.h
da5a0d00
LB
184
185indent:
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`
83284209
AJ
187
188if HAVE_GCOV
189
190coverage: check
191 @ find . -name '*.o' -exec gcov {} \;
192
193yorn:
194 @ echo "OK to upload coverage to https://coverage.io [y/N]:"
195 @ read yn; test "$$yn" = "y"
196
197upload-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
202force-check-coverage: coverage upload-check-coverage
203
204check-coverage: coverage yorn upload-check-coverage
205
206endif