]> git.ipfire.org Git - people/ms/network.git/blame - Makefile.am
Disable copybreak
[people/ms/network.git] / Makefile.am
CommitLineData
5ca9dc30
MT
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
4# Copyright (C) 2012-2013 IPFire Network Development Team #
5# #
6# This program is free software: you can redistribute it and/or modify #
7# it under the terms of the GNU General Public License as published by #
8# the Free Software Foundation, either version 3 of the License, or #
9# (at your option) any later version. #
10# #
11# This program is distributed in the hope that it will be useful, #
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
18# #
19###############################################################################
20
21ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
22AM_MAKEFLAGS = --no-print-directory
23AUTOMAKE_OPTIONS = color-tests
24
25# remove target it the command fails
26.DELETE_ON_ERROR:
27
28# keep itermediate files
29.SECONDARY:
30
f166708b 31configdir = $(sysconfdir)/network
bae37360 32bashcompletiondir= $(datadir)/bash-completion/completions
5ca9dc30 33libexecdir = $(prefix)/lib
ea4abb82 34modprobedir = $(prefix)/lib/modprobe.d
01f2b2e4 35pkgconfigdir = $(libdir)/pkgconfig
5ca9dc30 36pppdir = $(sysconfdir)/ppp
5e84cd41 37systemconfigdir = $(datadir)/network
5ca9dc30
MT
38sysctldir = $(prefix)/lib/sysctl.d
39tmpfilesdir = $(prefix)/lib/tmpfiles.d
40udevrulesdir = $(udevdir)/rules.d
41
42networkdir = $(libexecdir)/network
43helpersdir = $(networkdir)/helpers
44
45macrosdir = $(libexecdir)/firewall/macros
46
47hooksdir = $(networkdir)/hooks
7d2cb6d3 48hooks_configsdir = $(hooksdir)/configs
5ca9dc30
MT
49hooks_portsdir = $(hooksdir)/ports
50hooks_zonesdir = $(hooksdir)/zones
51
de3cecef
MT
52triggersdir = $(networkdir)/triggers
53
9c9d0585 54logdir = $(localestatedir)/log/network
e145b2f3 55utildir = $(networkdir)
9c9d0585 56
5ca9dc30
MT
57CLEANFILES =
58DISTCLEANFILES =
59EXTRA_DIST =
60INSTALL_DIRS =
61INSTALL_EXEC_HOOKS =
62UNINSTALL_EXEC_HOOKS =
63noinst_DATA =
64
01f2b2e4
MT
65AM_CPPFLAGS = \
66 $(OUR_CPPFLAGS) \
67 -include $(top_builddir)/config.h \
68 -I${top_srcdir}/src/libnetwork
69
70AM_CFLAGS = \
71 $(OUR_CFLAGS) \
72 -fvisibility=hidden \
73 -ffunction-sections \
74 -fdata-sections
75
76AM_LDFLAGS = \
77 $(OUR_LDFLAGS) \
78 -Wl,--gc-sections \
79 -Wl,--as-needed
e708653f 80
5ca9dc30
MT
81DISTCHECK_CONFIGURE_FLAGS = \
82 --with-systemdsystemunitdir=$$dc_install_base/$(systemdsystemunitdir) \
83 --with-udevdir=$$dc_install_base/$(udevdir)
84
85install-directories-hook:
86 $(MKDIR_P) $(addprefix $(DESTDIR),$(INSTALL_DIRS))
87
88INSTALL_EXEC_HOOKS += \
89 install-directories-hook
90
91# ------------------------------------------------------------------------------
92
8f591cfc
MT
93AM_V_ASCIIDOC = $(AM_V_ASCIIDOC_$(V))
94AM_V_ASCIIDOC_ = $(AM_V_ASCIIDOC_$(AM_DEFAULT_VERBOSITY))
95AM_V_ASCIIDOC_0 = @echo " ASCIIDOC" $@;
96
c4966dd6
MT
97AM_V_DOWNLOAD = $(AM_V_DOWNLOAD_$(V))
98AM_V_DOWNLOAD_ = $(AM_V_DOWNLOAD_$(AM_DEFAULT_VERBOSITY))
99AM_V_DOWNLOAD_0 = @echo " LOAD " $@;
100
1908d2b3
MT
101AM_V_NITSI = $(AM_V_NITSI_$(V))
102AM_V_NITSI_ = $(AM_V_NITSI_$(AM_DEFAULT_VERBOSITY))
103AM_V_NITSI_0 = @echo " NITSI " $@;
104
5ca9dc30
MT
105AM_V_XSLT = $(AM_V_XSLT_$(V))
106AM_V_XSLT_ = $(AM_V_XSLT_$(AM_DEFAULT_VERBOSITY))
107AM_V_XSLT_0 = @echo " XSLT " $@;
108
109# ------------------------------------------------------------------------------
110
111dist_doc_DATA = \
1337eee2 112 README \
dd46582c 113 docs/CODING_STYLE \
1337eee2 114 docs/COPYING
5ca9dc30
MT
115
116dist_sbin_SCRIPTS = \
117 src/dhclient-script \
0c5d22de 118 src/firewall \
5ca9dc30
MT
119 src/network
120
a62e991a 121network_DATA = \
5ca9dc30
MT
122 src/functions/functions
123
124CLEANFILES += \
125 src/functions/functions
126
127EXTRA_DIST += \
128 src/functions/functions.in
129
a62e991a 130dist_network_DATA = \
5ca9dc30
MT
131 src/functions/functions.at \
132 src/functions/functions.auth \
6a1b0fb1 133 src/functions/functions.bird \
5ca9dc30
MT
134 src/functions/functions.bonding \
135 src/functions/functions.bridge \
136 src/functions/functions.cli \
137 src/functions/functions.cli.firewall \
138 src/functions/functions.colors \
139 src/functions/functions.config \
140 src/functions/functions.conntrack \
141 src/functions/functions.constants \
142 src/functions/functions.constants-firewall \
143 src/functions/functions.db \
5ccc7299 144 src/functions/functions.description \
5ca9dc30
MT
145 src/functions/functions.device \
146 src/functions/functions.dhclient \
147 src/functions/functions.dhcpd \
148 src/functions/functions.distro \
149 src/functions/functions.dns \
150 src/functions/functions.dummy \
e524986c 151 src/functions/functions.editor \
5ca9dc30
MT
152 src/functions/functions.firewall \
153 src/functions/functions.firewall-policy \
154 src/functions/functions.firewall-zones \
155 src/functions/functions.he \
156 src/functions/functions.hook \
157 src/functions/functions.hostapd \
b8026986 158 src/functions/functions.hotplug \
5ca9dc30 159 src/functions/functions.http \
de72bd91 160 src/functions/functions.interrupts \
5ca9dc30 161 src/functions/functions.ip \
be844b7b 162 src/functions/functions.ipsec \
4e78b7ad 163 src/functions/functions.ipsec-pool \
5ca9dc30
MT
164 src/functions/functions.iptables \
165 src/functions/functions.ip-tunnel \
166 src/functions/functions.ipv4 \
167 src/functions/functions.ipv6 \
208f7452 168 src/functions/functions.leds \
5ca9dc30
MT
169 src/functions/functions.list \
170 src/functions/functions.lock \
171 src/functions/functions.logging \
172 src/functions/functions.macros \
5ca9dc30 173 src/functions/functions.modem \
3608f641 174 src/functions/functions.offloading \
5ca9dc30
MT
175 src/functions/functions.phy \
176 src/functions/functions.ports \
177 src/functions/functions.ppp \
178 src/functions/functions.pppoe-server \
5ca9dc30
MT
179 src/functions/functions.route \
180 src/functions/functions.routing \
181 src/functions/functions.serial \
182 src/functions/functions.service \
e9df08ad 183 src/functions/functions.settings \
5ca9dc30 184 src/functions/functions.stp \
5ca9dc30 185 src/functions/functions.sysctl \
de72bd91 186 src/functions/functions.system \
de3cecef 187 src/functions/functions.triggers \
5ca9dc30
MT
188 src/functions/functions.usb \
189 src/functions/functions.util \
190 src/functions/functions.vlan \
2da98f56 191 src/functions/functions.vpn \
3eae7bed 192 src/functions/functions.vpn-security-policies \
5ca9dc30 193 src/functions/functions.wireless \
81bf9898 194 src/functions/functions.wireless-mesh \
49958b8c 195 src/functions/functions.wireless-networks \
5ca9dc30
MT
196 src/functions/functions.wpa_supplicant \
197 src/functions/functions.zone \
5ca9dc30
MT
198 src/header-config \
199 src/header-port \
f9217f83 200 src/header-zone
5ca9dc30 201
b719b3f7 202dist_network_SCRIPTS = \
f9217f83
MT
203 src/dhclient-helper \
204 src/ppp/dialer \
205 src/ppp/pppoe-server
b719b3f7 206
5ca9dc30 207dist_helpers_SCRIPTS = \
5ca9dc30 208 src/helpers/dhcpd-config-helper \
5ca9dc30 209 src/helpers/hostapd-config-helper \
67baa452 210 src/helpers/ipsec-updown \
5ca9dc30 211 src/helpers/pppd-angel \
02807ad2 212 src/helpers/wpa_supplicant
5ca9dc30 213
13a6e69f
MT
214bin_PROGRAMS = \
215 src/inetcalc
216
217src_inetcalc_SOURCES = \
218 src/inetcalc.c
219
01f2b2e4
MT
220src_inetcalc_LDADD = \
221 src/libnetwork.la
222
7d2cb6d3 223dist_hooks_configs_SCRIPTS = \
9353a4e4 224 src/hooks/configs/dhcp \
b73e9d43 225 src/hooks/configs/ipv6-auto \
46a28dcd
MT
226 src/hooks/configs/pppoe-server \
227 src/hooks/configs/static
7d2cb6d3 228
5ca9dc30 229dist_hooks_ports_SCRIPTS = \
5ca9dc30
MT
230 src/hooks/ports/bonding \
231 src/hooks/ports/dummy \
232 src/hooks/ports/ethernet \
8032884d 233 src/hooks/ports/ip-tunnel \
5ca9dc30 234 src/hooks/ports/vlan \
727248f0
MT
235 src/hooks/ports/wireless-ap \
236 src/hooks/ports/wireless-mesh
5ca9dc30
MT
237
238dist_hooks_zones_SCRIPTS = \
5ca9dc30 239 src/hooks/zones/bridge \
85de251d 240 src/hooks/zones/ip-tunnel \
5ca9dc30
MT
241 src/hooks/zones/modem \
242 src/hooks/zones/pppoe \
5ca9dc30
MT
243 src/hooks/zones/wireless
244
f166708b
MT
245INSTALL_DIRS += \
246 $(configdir) \
247 $(configdir)/ports \
248 $(configdir)/vpn \
249 $(configdir)/vpn/ipsec/connections \
250 $(configdir)/vpn/security-policies \
251 $(configdir)/wireless \
252 $(configdir)/wireless/networks \
253 $(configdir)/zones
254
5ca9dc30
MT
255# ------------------------------------------------------------------------------
256
01f2b2e4
MT
257LIBNETWORK_CURRENT=0
258LIBNETWORK_REVISION=0
259LIBNETWORK_AGE=0
260
261pkginclude_HEADERS = \
248629ae 262 src/libnetwork/network/interface.h \
6f4814db 263 src/libnetwork/network/libnetwork.h \
9cb2f0c0
MT
264 src/libnetwork/network/logging.h \
265 src/libnetwork/network/phy.h
01f2b2e4
MT
266
267lib_LTLIBRARIES = \
268 src/libnetwork.la
269
270src_libnetwork_la_SOURCES = \
248629ae 271 src/libnetwork/interface.c \
01f2b2e4 272 src/libnetwork/libnetwork-private.h \
9cb2f0c0
MT
273 src/libnetwork/libnetwork.c \
274 src/libnetwork/phy.c
01f2b2e4 275
db0a2d76
MT
276src_libnetwork_la_LIBADD = \
277 $(LIBNL_LIBS)
278
6f4814db
MT
279src_libnetwork_la_CPPFLAGS = \
280 $(AM_CPPFLAGS) \
db0a2d76 281 $(LIBNL_CPPFLAGS) \
6f4814db
MT
282 -D_GNU_SOURCE \
283 -DNETWORK_PRIVATE
284
db0a2d76
MT
285src_libnetwork_la_CFLAGS = \
286 $(AM_CFLAGS) \
287 $(LIBNL_CFLAGS)
288
01f2b2e4
MT
289src_libnetwork_la_LDFLAGS = \
290 $(AM_LDFLAGS) \
291 -version-info $(LIBNETWORK_CURRENT):$(LIBNETWORK_REVISION):$(LIBNETWORK_AGE) \
292 -Wl,--version-script=$(top_srcdir)/src/libnetwork/libnetwork.sym
293
294src_libnetwork_la_DEPENDENCIES = \
295 src/libnetwork/libnetwork.sym
296
297EXTRA_DIST += \
298 src/libnetwork/libnetwork.sym
299
300# ------------------------------------------------------------------------------
e145b2f3
MT
301
302util_PROGRAMS = \
394cff53 303 src/utils/network-phy-list-channels \
2e4e3c88 304 src/utils/network-phy-list-ciphers \
b2323e58
MT
305 src/utils/network-phy-list-ht-caps \
306 src/utils/network-phy-list-vht-caps
e145b2f3 307
394cff53
MT
308src_utils_network_phy_list_channels_SOURCES = \
309 src/utils/network-phy-list-channels.c
310
311src_utils_network_phy_list_channels_LDADD = \
312 src/libnetwork.la
313
2e4e3c88
MT
314src_utils_network_phy_list_ciphers_SOURCES = \
315 src/utils/network-phy-list-ciphers.c
316
317src_utils_network_phy_list_ciphers_LDADD = \
318 src/libnetwork.la
319
e145b2f3
MT
320src_utils_network_phy_list_ht_caps_SOURCES = \
321 src/utils/network-phy-list-ht-caps.c
322
323src_utils_network_phy_list_ht_caps_LDADD = \
324 src/libnetwork.la
325
b2323e58
MT
326src_utils_network_phy_list_vht_caps_SOURCES = \
327 src/utils/network-phy-list-vht-caps.c
328
329src_utils_network_phy_list_vht_caps_LDADD = \
330 src/libnetwork.la
331
e145b2f3 332# ------------------------------------------------------------------------------
01f2b2e4 333
5ca9dc30
MT
334ppp_SCRIPTS = \
335 src/ppp/ip-updown
336
337CLEANFILES += \
338 src/ppp/ip-updown
339
340EXTRA_DIST += \
341 src/ppp/ip-updown.in
342
343INSTALL_DIRS += \
9c9d0585
SS
344 $(pppdir) \
345 $(logdir)
5ca9dc30
MT
346
347ppp-install-hook:
348 ln -svf ip-updown $(DESTDIR)$(pppdir)/ip-pre-up
349 ln -svf ip-updown $(DESTDIR)$(pppdir)/ip-up
350 ln -svf ip-updown $(DESTDIR)$(pppdir)/ip-down
351 ln -svf ip-updown $(DESTDIR)$(pppdir)/ipv6-up
352 ln -svf ip-updown $(DESTDIR)$(pppdir)/ipv6-down
353
354ppp-uninstall-hook:
355 rm -f $(DESTDIR)$(pppdir)/ip-{down,pre-up,up}
356 rm -f $(DESTDIR)$(pppdir)/ipv6-{down,up}
357
358INSTALL_EXEC_HOOKS += ppp-install-hook
359UNINSTALL_EXEC_HOOKS += ppp-uninstall-hook
360
361# ------------------------------------------------------------------------------
362
363if HAVE_SYSTEMD
364systemdsystemunit_DATA = \
67131768 365 src/systemd/firewall.service \
5ca9dc30
MT
366 src/systemd/firewall-init.service \
367 src/systemd/network-init.service \
368 src/systemd/network@.service
369
370CLEANFILES += \
371 $(systemdsystemunit_DATA)
372
373INSTALL_DIRS += \
374 $(systemdsystemunitdir)
375endif
376
377EXTRA_DIST += \
b41f1f86 378 src/systemd/firewall.service.in \
5ca9dc30
MT
379 src/systemd/firewall-init.service.in \
380 src/systemd/network-init.service.in \
381 src/systemd/network@.service.in
382
383# ------------------------------------------------------------------------------
384
5e84cd41
MT
385systemconfig_vpndir = $(systemconfigdir)/vpn
386
387dist_systemconfig_vpn_security_policies_DATA = \
56d5efa7 388 config/vpn/security-policies/performance \
5e84cd41
MT
389 config/vpn/security-policies/system
390
391systemconfig_vpn_security_policiesdir = $(systemconfig_vpndir)/security-policies
392
393# ------------------------------------------------------------------------------
394
5ca9dc30
MT
395dist_sysctl_DATA = \
396 src/sysctl/network.conf
397
398# ------------------------------------------------------------------------------
399
ea4abb82
MT
400dist_modprobe_DATA = \
401 src/modprobe.d/no-copybreak.conf
402
403# ------------------------------------------------------------------------------
404
bae37360
MT
405dist_bashcompletion_SCRIPTS = \
406 src/bash-completion/network
407
408# ------------------------------------------------------------------------------
409
5ca9dc30 410dist_tmpfiles_DATA = \
f9dac5a0 411 src/tmpfiles/network.conf
5ca9dc30
MT
412
413# ------------------------------------------------------------------------------
414
415if HAVE_UDEV
416dist_udev_SCRIPTS = \
417 src/udev/network-hotplug \
418 src/udev/network-hotplug-rename \
419 src/udev/network-hotplug-serial
420
421dist_udevrules_DATA = \
422 src/udev/rules.d/50-serial-whitelist.rules \
423 src/udev/rules.d/60-net.rules
424
425INSTALL_DIRS += \
426 $(udevdir) \
427 $(udevrulesdir)
428endif
429
430# ------------------------------------------------------------------------------
431
01f2b2e4 432pkgconfig_DATA = \
5ca9dc30
MT
433 src/network.pc
434
435CLEANFILES += \
01f2b2e4 436 $(pkgconfig_DATA)
5ca9dc30
MT
437
438EXTRA_DIST += \
439 src/network.pc.in
440
441# ------------------------------------------------------------------------------
442
443dist_macros_DATA = \
444 src/macros/DHCP \
445 src/macros/HTTP \
446 src/macros/HTTPS \
447 src/macros/WWW
448
449# ------------------------------------------------------------------------------
450
ec3fe5b7 451INSTALL_DIRS += \
de3cecef
MT
452 $(triggersdir)
453
454# ------------------------------------------------------------------------------
455
5ca9dc30 456MANPAGES = \
2b0ff832 457 man/firewall-settings.8 \
5ca9dc30 458 man/network.8 \
5ca9dc30 459 man/network-device.8 \
427f5ae2 460 man/network-dhcp.8 \
5ca9dc30 461 man/network-dns-server.8 \
de72bd91 462 man/network-performance-tuning.8 \
7a302fa7 463 man/network-port.8 \
94eab754 464 man/network-quick-start.8 \
5ca9dc30 465 man/network-route.8 \
e023191b 466 man/network-route-static.8 \
2b0ff832 467 man/network-settings.8 \
bec94f95 468 man/network-vpn.8 \
2612a6f4 469 man/network-vpn-ipsec.8 \
bec94f95 470 man/network-vpn-security-policies.8 \
5ca9dc30 471 man/network-zone.8 \
5ca9dc30
MT
472 man/network-zone-bridge.8 \
473 man/network-zone-config-pppoe-server.8 \
bd767a3e 474 man/network-zone-ip-tunnel.8 \
7a302fa7 475 man/network-zone-modem.8 \
2fb7ae4d
MT
476 man/network-zone-pppoe.8 \
477 man/network-zone-wireless.8
5ca9dc30 478
ff435238
MT
479EXTRA_DIST += \
480 man/include-color.txt \
481 man/include-description.txt
482
8f591cfc 483MANPAGES_TXT = $(patsubst %.8,%.txt,$(MANPAGES))
d746901b
MT
484MANPAGES_HTML = $(patsubst %.txt,%.html,$(MANPAGES_TXT))
485MANPAGES_XML = $(patsubst %.txt,%.xml,$(MANPAGES_TXT))
5ca9dc30
MT
486
487.PHONY: man
488man: $(MANPAGES) $(MANPAGES_HTML)
489
dbe28a05 490if ENABLE_MANPAGES
5ca9dc30
MT
491man_MANS = \
492 $(MANPAGES)
dbe28a05 493endif
5ca9dc30 494
5ca9dc30 495CLEANFILES += \
dbe28a05 496 $(MANPAGES) \
d746901b
MT
497 $(MANPAGES_HTML) \
498 $(MANPAGES_XML)
5ca9dc30
MT
499
500EXTRA_DIST += \
5d881996 501 man/asciidoc.conf \
a7d2fef7 502 $(MANPAGES_TXT)
5ca9dc30
MT
503
504XSLTPROC_FLAGS = \
505 --nonet \
506 --stringparam man.output.quietly 1 \
507 --stringparam funcsynopsis.style ansi \
508 --stringparam man.th.extra1.suppress 1 \
509 --stringparam man.authors.section.enabled 1 \
510 --stringparam man.copyright.section.enabled 1
511
512XSLTPROC_COMMAND_MAN = \
5d881996
MT
513 $(AM_V_XSLT)$(MKDIR_P) $(dir $@) && \
514 $(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) \
5ca9dc30
MT
515 http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
516
baf429f1 517man/%.xml: man/%.txt man/asciidoc.conf
5d881996
MT
518 $(AM_V_ASCIIDOC)$(MKDIR_P) $(dir $@) && \
519 $(ASCIIDOC) \
520 -f $(abs_srcdir)/man/asciidoc.conf \
baf429f1 521 -d manpage -b docbook -o $@ $<
8f591cfc 522
5ca9dc30
MT
523man/%.8: man/%.xml
524 $(XSLTPROC_COMMAND_MAN)
525
baf429f1 526man/%.html: man/%.txt man/asciidoc.conf
5d881996
MT
527 $(AM_V_ASCIIDOC)$(MKDIR_P) $(dir $@) && \
528 $(ASCIIDOC) \
529 -f $(abs_srcdir)/man/asciidoc.conf \
baf429f1 530 -b html5 -a icons -a theme=flask -o $@ $<
5ca9dc30 531
2d2e9626
MT
532.PHONY: upload-man
533upload-man: $(MANPAGES_HTML)
534 rsync -avHz --delete --progress $(MANPAGES_HTML) ms@people.ipfire.org:/pub/man-pages/$(PACKAGE_NAME)/
535
5ca9dc30
MT
536# ------------------------------------------------------------------------------
537
538substitutions = \
539 '|PACKAGE_NAME=$(PACKAGE_NAME)|' \
540 '|PACKAGE_URL=$(PACKAGE_URL)|' \
541 '|PACKAGE_VERSION=$(PACKAGE_VERSION)|' \
a35f416c 542 '|builddir=$(abs_builddir)|' \
5ca9dc30
MT
543 '|prefix=$(prefix)|' \
544 '|exec_prefix=$(exec_prefix)|' \
545 '|sbindir=$(sbindir)|' \
c6525a63 546 '|networkdir=$(networkdir)|' \
96275aa1 547 '|helpersdir=$(helpersdir)|' \
c4966dd6
MT
548 '|utildir=$(utildir)|' \
549 '|VIRTUAL_ENVIRONMENT_IMAGES_DIR=$(VIRTUAL_ENVIRONMENT_IMAGES_DIR)|'
5ca9dc30
MT
550
551SED_PROCESS = \
552 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
553 $(SED) $(subst '|,-e 's|@,$(subst =,\@|,$(subst |',|g',$(substitutions)))) \
554 < $< > $@
555
3431f712 556%: %.in Makefile
5ca9dc30
MT
557 $(SED_PROCESS)
558
559INSTALL_DIRS += \
560 $(sbindir)
561
562install-exec-hook: $(INSTALL_EXEC_HOOKS)
563
564uninstall-hook: $(UNINSTALL_EXEC_HOOKS)
565
566# - testsuite ------------------------------------------------------------------
567
568TESTS_ENVIRONMENT = \
071d3416 569 LD_LIBRARY_PATH=$(top_builddir)/src/.libs:$(LD_LIBRARY_PATH) \
8744a476
MT
570 PATH=$(top_builddir)/src:$(PATH) \
571 functions=$(abs_builddir)/src/functions/functions \
572 networkdir=$(abs_srcdir)/src/functions \
573 testdir=$(top_srcdir)/test
574
575dist_check_DATA = \
ee86c73f
MT
576 test/constants.sh \
577 test/test-functions
5ca9dc30
MT
578
579dist_check_SCRIPTS = \
8744a476 580 $(TESTS)
5ca9dc30
MT
581
582TESTS = \
bb8304ec 583 test/load-library \
bb8304ec 584 test/functions/ip/ip_detect_protocol \
bb8304ec 585 test/functions/ip/ip_get_prefix \
8b0958b2 586 test/functions/ip/ip_net_is_valid \
b7fd8067 587 test/functions/ip/ip_is_valid \
b862734c 588 test/functions/ip/ip_network_is_subnet_of \
b7fd8067
MT
589 test/functions/ip/ip_prefix_is_valid \
590 test/functions/ip/ip_protocol_is_supported \
591 test/functions/ip/ip_split_prefix
1908d2b3
MT
592
593# - NITSI tests ----------------------------------------------------------------
594
232d01c8 595# Files for the virtual environment
c4966dd6 596VIRTUAL_ENVIRONMENT_FILES = \
232d01c8
MT
597 test/nitsi/virtual-environment/basic/machines/alice/machine.xml \
598 test/nitsi/virtual-environment/basic/machines/alice/snapshot.xml \
599 test/nitsi/virtual-environment/basic/machines/bob/machine.xml \
600 test/nitsi/virtual-environment/basic/machines/bob/snapshot.xml \
601 test/nitsi/virtual-environment/basic/network/network1/network.xml \
602 test/nitsi/virtual-environment/basic/network/network2/network.xml \
603 test/nitsi/virtual-environment/basic/network/network3/network.xml \
604 test/nitsi/virtual-environment/basic/network/network4/network.xml \
232d01c8
MT
605 test/nitsi/virtual-environment/basic/settings
606
c4966dd6
MT
607EXTRA_DIST += \
608 test/nitsi/virtual-environment/basic/machines/alice/machine.xml.in \
609 test/nitsi/virtual-environment/basic/machines/alice/snapshot.xml.in \
610 test/nitsi/virtual-environment/basic/machines/bob/machine.xml.in \
43d82e80
JS
611 test/nitsi/virtual-environment/basic/machines/bob/snapshot.xml.in \
612 test/nitsi/virtual-environment/basic/settings.in
c4966dd6
MT
613
614CLEANFILES += \
615 test/nitsi/virtual-environment/basic/machines/alice/machine.xml \
616 test/nitsi/virtual-environment/basic/machines/alice/snapshot.xml \
617 test/nitsi/virtual-environment/basic/machines/bob/machine.xml \
43d82e80
JS
618 test/nitsi/virtual-environment/basic/machines/bob/snapshot.xml \
619 test/nitsi/virtual-environment/basic/settings
c4966dd6
MT
620
621# Virtual Machine Images
622VIRTUAL_ENVIRONMENT_IMAGES = \
623 $(VIRTUAL_ENVIRONMENT_IMAGES_DIR)/ipfire-alice-2.qcow2 \
624 $(VIRTUAL_ENVIRONMENT_IMAGES_DIR)/ipfire-bob.qcow2
625
626DISTCLEANFILES += \
627 $(VIRTUAL_ENVIRONMENT_IMAGES)
628
629VIRTUAL_ENVIRONMENT_IMAGES_DIR = $(abs_builddir)/test/nitsi/virtual-environment/.images
630VIRTUAL_ENVIRONMENT_IMAGES_DOWNLOAD_URL = \
631 https://people.ipfire.org/~jschlag/nitsi-ipfire/virtual-environment/basic/
632
60dbefba 633NITSI_INCLUDE_RECIPES = \
fb99a6c7 634 test/nitsi/include/setup
60dbefba
JS
635
636EXTRA_DIST += \
fb99a6c7 637 test/nitsi/include/setup.in
60dbefba
JS
638
639CLEANFILES += \
fb99a6c7 640 test/nitsi/include/setup
60dbefba 641
1908d2b3 642NITSI_TESTS = \
4c769bb2 643 test/nitsi/test/make-check \
ae7a79da 644 test/nitsi/test/phase1 \
7808dbf2 645 test/nitsi/test/pppoe \
07c82cd3 646 test/nitsi/test/raw-device-get-by-mac \
9c8ff8de 647 test/nitsi/test/zone-new-bridge \
283ad5b0 648 test/nitsi/test/zone-port-attach-bridge \
8c929286
MT
649 test/nitsi/test/zone/ip-tunnel/gre6 \
650 test/nitsi/test/zone/ip-tunnel/gre4 \
60b6dd44
JS
651 test/nitsi/test/vpn/ipsec/n2n/vti/ipv4-via-ipv4 \
652 test/nitsi/test/vpn/ipsec/n2n/vti/ipv4-via-ipv6 \
653 test/nitsi/test/vpn/ipsec/n2n/vti/ipv6-via-ipv4 \
654 test/nitsi/test/vpn/ipsec/n2n/vti/ipv6-via-ipv6 \
655 test/nitsi/test/vpn/ipsec/n2n/vti/ipv64-via-ipv4 \
656 test/nitsi/test/vpn/ipsec/n2n/vti/ipv64-via-ipv6 \
87ad62bc 657 test/nitsi/test/port-vlan
1908d2b3
MT
658
659EXTRA_DIST += \
91ee6559 660 test/nitsi/test/settings.in \
a35f416c 661 test/nitsi/test/make-check/recipe.in \
07c82cd3
JS
662 test/nitsi/test/make-check/settings.in \
663 test/nitsi/test/raw-device-get-by-mac/recipe \
664 test/nitsi/test/raw-device-get-by-mac/settings.in \
665 test/nitsi/test/zone-new-bridge/recipe \
9c8ff8de
JS
666 test/nitsi/test/zone-new-bridge/settings.in \
667 test/nitsi/test/zone-port-attach-bridge/recipe \
283ad5b0 668 test/nitsi/test/zone-port-attach-bridge/settings.in \
8c929286
MT
669 test/nitsi/test/zone/ip-tunnel/gre6/recipe \
670 test/nitsi/test/zone/ip-tunnel/gre6/settings \
671 test/nitsi/test/zone/ip-tunnel/gre4/recipe \
672 test/nitsi/test/zone/ip-tunnel/gre4/settings \
60b6dd44
JS
673 test/nitsi/test/vpn/ipsec/n2n/vti/ipv4-via-ipv4/recipe \
674 test/nitsi/test/vpn/ipsec/n2n/vti/ipv4-via-ipv4/settings \
675 test/nitsi/test/vpn/ipsec/n2n/vti/ipv4-via-ipv6/recipe \
676 test/nitsi/test/vpn/ipsec/n2n/vti/ipv4-via-ipv6/settings \
677 test/nitsi/test/vpn/ipsec/n2n/vti/ipv6-via-ipv4/recipe \
678 test/nitsi/test/vpn/ipsec/n2n/vti/ipv6-via-ipv4/settings \
679 test/nitsi/test/vpn/ipsec/n2n/vti/ipv6-via-ipv6/recipe \
680 test/nitsi/test/vpn/ipsec/n2n/vti/ipv6-via-ipv6/settings \
681 test/nitsi/test/vpn/ipsec/n2n/vti/ipv64-via-ipv4/recipe \
682 test/nitsi/test/vpn/ipsec/n2n/vti/ipv64-via-ipv4/settings \
683 test/nitsi/test/vpn/ipsec/n2n/vti/ipv64-via-ipv6/recipe \
684 test/nitsi/test/vpn/ipsec/n2n/vti/ipv64-via-ipv6/settings \
685 test/nitsi/test/port-vlan/recipe \
686 test/nitsi/test/port-vlan/settings
a35f416c
MT
687
688CLEANFILES += \
91ee6559 689 test/nitsi/test/settings \
a35f416c 690 test/nitsi/test/make-check/recipe \
4c769bb2 691 test/nitsi/test/make-check/settings \
07c82cd3 692 test/nitsi/test/raw-device-get-by-mac/settings \
9c8ff8de 693 test/nitsi/test/zone-new-bridge/settings \
9b01a925 694 test/nitsi/test/zone-port-attach-bridge/settings
1908d2b3
MT
695
696NITSI_ENVIRONMENT =
697
698.PHONY: $(NITSI_TESTS)
59281a53 699$(NITSI_TESTS): % : dist %/recipe %/settings test/nitsi/test/settings $(VIRTUAL_ENVIRONMENT_FILES) $(VIRTUAL_ENVIRONMENT_IMAGES) $(NITSI_INCLUDE_RECIPES)
91ee6559 700 $(AM_V_NITSI) $(NITSI_ENVIRONMENT) $(NITSI) --log-level error run-test -d $@ \
e3e44ab6 701 --default-settings $(abs_builddir)/test/nitsi/test/settings --interactive-error-handling
1908d2b3
MT
702
703.PHONY: nitsi
59281a53 704nitsi: $(NITSI_TESTS)
c4966dd6
MT
705
706# Downloads a virtual image file and extracts it
707$(VIRTUAL_ENVIRONMENT_IMAGES):
708 $(AM_V_DOWNLOAD)$(MKDIR_P) $(dir $@) && \
709 $(WGET) -qO - $(VIRTUAL_ENVIRONMENT_IMAGES_DOWNLOAD_URL)/$(notdir $@).xz | xz -qd > $@