]> git.ipfire.org Git - people/ms/network.git/blame - Makefile.am
bird: Write IPv6 router advertisement configuration
[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
01f2b2e4 34pkgconfigdir = $(libdir)/pkgconfig
5ca9dc30 35pppdir = $(sysconfdir)/ppp
5e84cd41 36systemconfigdir = $(datadir)/network
5ca9dc30
MT
37sysctldir = $(prefix)/lib/sysctl.d
38tmpfilesdir = $(prefix)/lib/tmpfiles.d
39udevrulesdir = $(udevdir)/rules.d
40
41networkdir = $(libexecdir)/network
42helpersdir = $(networkdir)/helpers
43
44macrosdir = $(libexecdir)/firewall/macros
45
46hooksdir = $(networkdir)/hooks
7d2cb6d3 47hooks_configsdir = $(hooksdir)/configs
5ca9dc30
MT
48hooks_portsdir = $(hooksdir)/ports
49hooks_zonesdir = $(hooksdir)/zones
50
de3cecef
MT
51triggersdir = $(networkdir)/triggers
52
9c9d0585 53logdir = $(localestatedir)/log/network
e145b2f3 54utildir = $(networkdir)
9c9d0585 55
5ca9dc30
MT
56CLEANFILES =
57DISTCLEANFILES =
58EXTRA_DIST =
59INSTALL_DIRS =
60INSTALL_EXEC_HOOKS =
61UNINSTALL_EXEC_HOOKS =
62noinst_DATA =
63
01f2b2e4
MT
64AM_CPPFLAGS = \
65 $(OUR_CPPFLAGS) \
66 -include $(top_builddir)/config.h \
67 -I${top_srcdir}/src/libnetwork
68
69AM_CFLAGS = \
70 $(OUR_CFLAGS) \
71 -fvisibility=hidden \
72 -ffunction-sections \
73 -fdata-sections
74
75AM_LDFLAGS = \
76 $(OUR_LDFLAGS) \
77 -Wl,--gc-sections \
78 -Wl,--as-needed
e708653f 79
5ca9dc30
MT
80DISTCHECK_CONFIGURE_FLAGS = \
81 --with-systemdsystemunitdir=$$dc_install_base/$(systemdsystemunitdir) \
82 --with-udevdir=$$dc_install_base/$(udevdir)
83
84install-directories-hook:
85 $(MKDIR_P) $(addprefix $(DESTDIR),$(INSTALL_DIRS))
86
87INSTALL_EXEC_HOOKS += \
88 install-directories-hook
89
90# ------------------------------------------------------------------------------
91
c4966dd6
MT
92AM_V_DOWNLOAD = $(AM_V_DOWNLOAD_$(V))
93AM_V_DOWNLOAD_ = $(AM_V_DOWNLOAD_$(AM_DEFAULT_VERBOSITY))
94AM_V_DOWNLOAD_0 = @echo " LOAD " $@;
95
1908d2b3
MT
96AM_V_NITSI = $(AM_V_NITSI_$(V))
97AM_V_NITSI_ = $(AM_V_NITSI_$(AM_DEFAULT_VERBOSITY))
98AM_V_NITSI_0 = @echo " NITSI " $@;
99
5ca9dc30
MT
100AM_V_XSLT = $(AM_V_XSLT_$(V))
101AM_V_XSLT_ = $(AM_V_XSLT_$(AM_DEFAULT_VERBOSITY))
102AM_V_XSLT_0 = @echo " XSLT " $@;
103
104# ------------------------------------------------------------------------------
105
106dist_doc_DATA = \
1337eee2 107 README \
dd46582c 108 docs/CODING_STYLE \
1337eee2 109 docs/COPYING
5ca9dc30
MT
110
111dist_sbin_SCRIPTS = \
112 src/dhclient-script \
113 src/firewall-config \
114 src/firewall4 \
115 src/firewall6 \
116 src/network
117
a62e991a 118network_DATA = \
5ca9dc30
MT
119 src/functions/functions
120
121CLEANFILES += \
122 src/functions/functions
123
124EXTRA_DIST += \
125 src/functions/functions.in
126
a62e991a 127dist_network_DATA = \
5ca9dc30
MT
128 src/functions/functions.at \
129 src/functions/functions.auth \
6a1b0fb1 130 src/functions/functions.bird \
5ca9dc30
MT
131 src/functions/functions.bonding \
132 src/functions/functions.bridge \
133 src/functions/functions.cli \
134 src/functions/functions.cli.firewall \
135 src/functions/functions.colors \
136 src/functions/functions.config \
137 src/functions/functions.conntrack \
138 src/functions/functions.constants \
139 src/functions/functions.constants-firewall \
140 src/functions/functions.db \
5ccc7299 141 src/functions/functions.description \
5ca9dc30
MT
142 src/functions/functions.device \
143 src/functions/functions.dhclient \
144 src/functions/functions.dhcpd \
145 src/functions/functions.distro \
146 src/functions/functions.dns \
147 src/functions/functions.dummy \
e524986c 148 src/functions/functions.editor \
5ca9dc30
MT
149 src/functions/functions.firewall \
150 src/functions/functions.firewall-policy \
151 src/functions/functions.firewall-zones \
152 src/functions/functions.he \
153 src/functions/functions.hook \
154 src/functions/functions.hostapd \
b8026986 155 src/functions/functions.hotplug \
5ca9dc30 156 src/functions/functions.http \
de72bd91 157 src/functions/functions.interrupts \
5ca9dc30 158 src/functions/functions.ip \
be844b7b 159 src/functions/functions.ipsec \
4e78b7ad 160 src/functions/functions.ipsec-pool \
5ca9dc30
MT
161 src/functions/functions.iptables \
162 src/functions/functions.ip-tunnel \
163 src/functions/functions.ipv4 \
164 src/functions/functions.ipv6 \
208f7452 165 src/functions/functions.leds \
5ca9dc30
MT
166 src/functions/functions.list \
167 src/functions/functions.lock \
168 src/functions/functions.logging \
169 src/functions/functions.macros \
5ca9dc30 170 src/functions/functions.modem \
3608f641 171 src/functions/functions.offloading \
5ca9dc30
MT
172 src/functions/functions.phy \
173 src/functions/functions.ports \
174 src/functions/functions.ppp \
175 src/functions/functions.pppoe-server \
176 src/functions/functions.radvd \
5ca9dc30
MT
177 src/functions/functions.route \
178 src/functions/functions.routing \
179 src/functions/functions.serial \
180 src/functions/functions.service \
e9df08ad 181 src/functions/functions.settings \
5ca9dc30 182 src/functions/functions.stp \
5ca9dc30 183 src/functions/functions.sysctl \
de72bd91 184 src/functions/functions.system \
de3cecef 185 src/functions/functions.triggers \
5ca9dc30
MT
186 src/functions/functions.usb \
187 src/functions/functions.util \
188 src/functions/functions.vlan \
2da98f56 189 src/functions/functions.vpn \
3eae7bed 190 src/functions/functions.vpn-security-policies \
5ca9dc30 191 src/functions/functions.wireless \
81bf9898 192 src/functions/functions.wireless-mesh \
49958b8c 193 src/functions/functions.wireless-networks \
5ca9dc30
MT
194 src/functions/functions.wpa_supplicant \
195 src/functions/functions.zone \
196 src/network-radvd-config \
5ca9dc30
MT
197 src/header-config \
198 src/header-port \
f9217f83 199 src/header-zone
5ca9dc30 200
b719b3f7 201dist_network_SCRIPTS = \
f9217f83
MT
202 src/dhclient-helper \
203 src/ppp/dialer \
204 src/ppp/pppoe-server
b719b3f7 205
5ca9dc30 206dist_helpers_SCRIPTS = \
5ca9dc30
MT
207 src/helpers/dhcpd-config-helper \
208 src/helpers/firewall-kernel-init \
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 = \
365 src/systemd/firewall4.service \
366 src/systemd/firewall6.service \
367 src/systemd/firewall-init.service \
368 src/systemd/network-init.service \
369 src/systemd/network@.service
370
371CLEANFILES += \
372 $(systemdsystemunit_DATA)
373
374INSTALL_DIRS += \
375 $(systemdsystemunitdir)
376endif
377
378EXTRA_DIST += \
379 src/systemd/firewall4.service.in \
380 src/systemd/firewall6.service.in \
381 src/systemd/firewall-init.service.in \
382 src/systemd/network-init.service.in \
383 src/systemd/network@.service.in
384
385# ------------------------------------------------------------------------------
386
5e84cd41
MT
387systemconfig_vpndir = $(systemconfigdir)/vpn
388
389dist_systemconfig_vpn_security_policies_DATA = \
56d5efa7 390 config/vpn/security-policies/performance \
5e84cd41
MT
391 config/vpn/security-policies/system
392
393systemconfig_vpn_security_policiesdir = $(systemconfig_vpndir)/security-policies
394
395# ------------------------------------------------------------------------------
396
5ca9dc30
MT
397dist_sysctl_DATA = \
398 src/sysctl/network.conf
399
400# ------------------------------------------------------------------------------
401
bae37360
MT
402dist_bashcompletion_SCRIPTS = \
403 src/bash-completion/network
404
405# ------------------------------------------------------------------------------
406
5ca9dc30 407dist_tmpfiles_DATA = \
f9dac5a0 408 src/tmpfiles/network.conf
5ca9dc30
MT
409
410# ------------------------------------------------------------------------------
411
412if HAVE_UDEV
413dist_udev_SCRIPTS = \
414 src/udev/network-hotplug \
415 src/udev/network-hotplug-rename \
416 src/udev/network-hotplug-serial
417
418dist_udevrules_DATA = \
419 src/udev/rules.d/50-serial-whitelist.rules \
420 src/udev/rules.d/60-net.rules
421
422INSTALL_DIRS += \
423 $(udevdir) \
424 $(udevrulesdir)
425endif
426
427# ------------------------------------------------------------------------------
428
01f2b2e4 429pkgconfig_DATA = \
5ca9dc30
MT
430 src/network.pc
431
432CLEANFILES += \
01f2b2e4 433 $(pkgconfig_DATA)
5ca9dc30
MT
434
435EXTRA_DIST += \
436 src/network.pc.in
437
438# ------------------------------------------------------------------------------
439
440dist_macros_DATA = \
441 src/macros/DHCP \
442 src/macros/HTTP \
443 src/macros/HTTPS \
444 src/macros/WWW
445
446# ------------------------------------------------------------------------------
447
ec3fe5b7 448INSTALL_DIRS += \
de3cecef
MT
449 $(triggersdir)
450
451# ------------------------------------------------------------------------------
452
5ca9dc30 453MANPAGES = \
2b0ff832 454 man/firewall-settings.8 \
5ca9dc30 455 man/network.8 \
89c81bcf 456 man/network-color.8 \
6135a5b3 457 man/network-description.8 \
5ca9dc30 458 man/network-device.8 \
427f5ae2 459 man/network-dhcp.8 \
5ca9dc30 460 man/network-dns-server.8 \
de72bd91 461 man/network-performance-tuning.8 \
7a302fa7 462 man/network-port.8 \
94eab754 463 man/network-quick-start.8 \
5ca9dc30 464 man/network-route.8 \
e023191b 465 man/network-route-static.8 \
2b0ff832 466 man/network-settings.8 \
bec94f95
MT
467 man/network-vpn.8 \
468 man/network-vpn-security-policies.8 \
5ca9dc30 469 man/network-zone.8 \
5ca9dc30
MT
470 man/network-zone-bridge.8 \
471 man/network-zone-config-pppoe-server.8 \
bd767a3e 472 man/network-zone-ip-tunnel.8 \
7a302fa7 473 man/network-zone-modem.8 \
2fb7ae4d
MT
474 man/network-zone-pppoe.8 \
475 man/network-zone-wireless.8
5ca9dc30
MT
476
477MANPAGES_XML = $(patsubst %.8,%.xml,$(MANPAGES))
478MANPAGES_HTML = $(patsubst %.xml,%.html,$(MANPAGES_XML))
479
480.PHONY: man
481man: $(MANPAGES) $(MANPAGES_HTML)
482
483man_MANS = \
484 $(MANPAGES)
485
486noinst_DATA += \
487 $(MANPAGES_HTML)
488
489CLEANFILES += \
490 $(man_MANS) \
491 $(MANPAGES_HTML)
492
493EXTRA_DIST += \
494 $(MANPAGES_XML) \
495 man/custom-html.xsl
496
497XSLTPROC_FLAGS = \
498 --nonet \
499 --stringparam man.output.quietly 1 \
500 --stringparam funcsynopsis.style ansi \
501 --stringparam man.th.extra1.suppress 1 \
502 --stringparam man.authors.section.enabled 1 \
503 --stringparam man.copyright.section.enabled 1
504
505XSLTPROC_COMMAND_MAN = \
506 $(AM_V_XSLT)$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) \
507 http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
508
509XSLTPROC_COMMAND_HTML = \
510 $(AM_V_XSLT)$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) $(srcdir)/man/custom-html.xsl $<
511
512man/%.8: man/%.xml
513 $(XSLTPROC_COMMAND_MAN)
514
515man/%.html: man/%.xml man/custom-html.xsl
516 $(XSLTPROC_COMMAND_HTML)
517
518# ------------------------------------------------------------------------------
519
520substitutions = \
521 '|PACKAGE_NAME=$(PACKAGE_NAME)|' \
522 '|PACKAGE_URL=$(PACKAGE_URL)|' \
523 '|PACKAGE_VERSION=$(PACKAGE_VERSION)|' \
a35f416c 524 '|builddir=$(abs_builddir)|' \
5ca9dc30
MT
525 '|prefix=$(prefix)|' \
526 '|exec_prefix=$(exec_prefix)|' \
527 '|sbindir=$(sbindir)|' \
c6525a63 528 '|networkdir=$(networkdir)|' \
96275aa1 529 '|helpersdir=$(helpersdir)|' \
c4966dd6
MT
530 '|utildir=$(utildir)|' \
531 '|VIRTUAL_ENVIRONMENT_IMAGES_DIR=$(VIRTUAL_ENVIRONMENT_IMAGES_DIR)|'
5ca9dc30
MT
532
533SED_PROCESS = \
534 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
535 $(SED) $(subst '|,-e 's|@,$(subst =,\@|,$(subst |',|g',$(substitutions)))) \
536 < $< > $@
537
3431f712 538%: %.in Makefile
5ca9dc30
MT
539 $(SED_PROCESS)
540
541INSTALL_DIRS += \
542 $(sbindir)
543
544install-exec-hook: $(INSTALL_EXEC_HOOKS)
545
546uninstall-hook: $(UNINSTALL_EXEC_HOOKS)
547
548# - testsuite ------------------------------------------------------------------
549
550TESTS_ENVIRONMENT = \
071d3416 551 LD_LIBRARY_PATH=$(top_builddir)/src/.libs:$(LD_LIBRARY_PATH) \
8744a476
MT
552 PATH=$(top_builddir)/src:$(PATH) \
553 functions=$(abs_builddir)/src/functions/functions \
554 networkdir=$(abs_srcdir)/src/functions \
555 testdir=$(top_srcdir)/test
556
557dist_check_DATA = \
ee86c73f
MT
558 test/constants.sh \
559 test/test-functions
5ca9dc30
MT
560
561dist_check_SCRIPTS = \
8744a476 562 $(TESTS)
5ca9dc30
MT
563
564TESTS = \
bb8304ec 565 test/load-library \
bb8304ec 566 test/functions/ip/ip_detect_protocol \
bb8304ec 567 test/functions/ip/ip_get_prefix \
8b0958b2 568 test/functions/ip/ip_net_is_valid \
b7fd8067 569 test/functions/ip/ip_is_valid \
b862734c 570 test/functions/ip/ip_network_is_subnet_of \
b7fd8067
MT
571 test/functions/ip/ip_prefix_is_valid \
572 test/functions/ip/ip_protocol_is_supported \
573 test/functions/ip/ip_split_prefix
1908d2b3
MT
574
575# - NITSI tests ----------------------------------------------------------------
576
232d01c8 577# Files for the virtual environment
c4966dd6 578VIRTUAL_ENVIRONMENT_FILES = \
232d01c8
MT
579 test/nitsi/virtual-environment/basic/machines/alice/machine.xml \
580 test/nitsi/virtual-environment/basic/machines/alice/snapshot.xml \
581 test/nitsi/virtual-environment/basic/machines/bob/machine.xml \
582 test/nitsi/virtual-environment/basic/machines/bob/snapshot.xml \
583 test/nitsi/virtual-environment/basic/network/network1/network.xml \
584 test/nitsi/virtual-environment/basic/network/network2/network.xml \
585 test/nitsi/virtual-environment/basic/network/network3/network.xml \
586 test/nitsi/virtual-environment/basic/network/network4/network.xml \
232d01c8
MT
587 test/nitsi/virtual-environment/basic/settings
588
c4966dd6
MT
589EXTRA_DIST += \
590 test/nitsi/virtual-environment/basic/machines/alice/machine.xml.in \
591 test/nitsi/virtual-environment/basic/machines/alice/snapshot.xml.in \
592 test/nitsi/virtual-environment/basic/machines/bob/machine.xml.in \
43d82e80
JS
593 test/nitsi/virtual-environment/basic/machines/bob/snapshot.xml.in \
594 test/nitsi/virtual-environment/basic/settings.in
c4966dd6
MT
595
596CLEANFILES += \
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 \
43d82e80
JS
600 test/nitsi/virtual-environment/basic/machines/bob/snapshot.xml \
601 test/nitsi/virtual-environment/basic/settings
c4966dd6
MT
602
603# Virtual Machine Images
604VIRTUAL_ENVIRONMENT_IMAGES = \
605 $(VIRTUAL_ENVIRONMENT_IMAGES_DIR)/ipfire-alice-2.qcow2 \
606 $(VIRTUAL_ENVIRONMENT_IMAGES_DIR)/ipfire-bob.qcow2
607
608DISTCLEANFILES += \
609 $(VIRTUAL_ENVIRONMENT_IMAGES)
610
611VIRTUAL_ENVIRONMENT_IMAGES_DIR = $(abs_builddir)/test/nitsi/virtual-environment/.images
612VIRTUAL_ENVIRONMENT_IMAGES_DOWNLOAD_URL = \
613 https://people.ipfire.org/~jschlag/nitsi-ipfire/virtual-environment/basic/
614
60dbefba 615NITSI_INCLUDE_RECIPES = \
fb99a6c7 616 test/nitsi/include/setup
60dbefba
JS
617
618EXTRA_DIST += \
fb99a6c7 619 test/nitsi/include/setup.in
60dbefba
JS
620
621CLEANFILES += \
fb99a6c7 622 test/nitsi/include/setup
60dbefba 623
1908d2b3 624NITSI_TESTS = \
4c769bb2 625 test/nitsi/test/make-check \
ae7a79da 626 test/nitsi/test/phase1 \
7808dbf2 627 test/nitsi/test/pppoe \
07c82cd3 628 test/nitsi/test/raw-device-get-by-mac \
9c8ff8de 629 test/nitsi/test/zone-new-bridge \
283ad5b0 630 test/nitsi/test/zone-port-attach-bridge \
8c929286
MT
631 test/nitsi/test/zone/ip-tunnel/gre6 \
632 test/nitsi/test/zone/ip-tunnel/gre4 \
60b6dd44
JS
633 test/nitsi/test/vpn/ipsec/n2n/vti/ipv4-via-ipv4 \
634 test/nitsi/test/vpn/ipsec/n2n/vti/ipv4-via-ipv6 \
635 test/nitsi/test/vpn/ipsec/n2n/vti/ipv6-via-ipv4 \
636 test/nitsi/test/vpn/ipsec/n2n/vti/ipv6-via-ipv6 \
637 test/nitsi/test/vpn/ipsec/n2n/vti/ipv64-via-ipv4 \
638 test/nitsi/test/vpn/ipsec/n2n/vti/ipv64-via-ipv6 \
87ad62bc 639 test/nitsi/test/port-vlan
1908d2b3
MT
640
641EXTRA_DIST += \
91ee6559 642 test/nitsi/test/settings.in \
a35f416c 643 test/nitsi/test/make-check/recipe.in \
07c82cd3
JS
644 test/nitsi/test/make-check/settings.in \
645 test/nitsi/test/raw-device-get-by-mac/recipe \
646 test/nitsi/test/raw-device-get-by-mac/settings.in \
647 test/nitsi/test/zone-new-bridge/recipe \
9c8ff8de
JS
648 test/nitsi/test/zone-new-bridge/settings.in \
649 test/nitsi/test/zone-port-attach-bridge/recipe \
283ad5b0 650 test/nitsi/test/zone-port-attach-bridge/settings.in \
8c929286
MT
651 test/nitsi/test/zone/ip-tunnel/gre6/recipe \
652 test/nitsi/test/zone/ip-tunnel/gre6/settings \
653 test/nitsi/test/zone/ip-tunnel/gre4/recipe \
654 test/nitsi/test/zone/ip-tunnel/gre4/settings \
60b6dd44
JS
655 test/nitsi/test/vpn/ipsec/n2n/vti/ipv4-via-ipv4/recipe \
656 test/nitsi/test/vpn/ipsec/n2n/vti/ipv4-via-ipv4/settings \
657 test/nitsi/test/vpn/ipsec/n2n/vti/ipv4-via-ipv6/recipe \
658 test/nitsi/test/vpn/ipsec/n2n/vti/ipv4-via-ipv6/settings \
659 test/nitsi/test/vpn/ipsec/n2n/vti/ipv6-via-ipv4/recipe \
660 test/nitsi/test/vpn/ipsec/n2n/vti/ipv6-via-ipv4/settings \
661 test/nitsi/test/vpn/ipsec/n2n/vti/ipv6-via-ipv6/recipe \
662 test/nitsi/test/vpn/ipsec/n2n/vti/ipv6-via-ipv6/settings \
663 test/nitsi/test/vpn/ipsec/n2n/vti/ipv64-via-ipv4/recipe \
664 test/nitsi/test/vpn/ipsec/n2n/vti/ipv64-via-ipv4/settings \
665 test/nitsi/test/vpn/ipsec/n2n/vti/ipv64-via-ipv6/recipe \
666 test/nitsi/test/vpn/ipsec/n2n/vti/ipv64-via-ipv6/settings \
667 test/nitsi/test/port-vlan/recipe \
668 test/nitsi/test/port-vlan/settings
a35f416c
MT
669
670CLEANFILES += \
91ee6559 671 test/nitsi/test/settings \
a35f416c 672 test/nitsi/test/make-check/recipe \
4c769bb2 673 test/nitsi/test/make-check/settings \
07c82cd3 674 test/nitsi/test/raw-device-get-by-mac/settings \
9c8ff8de 675 test/nitsi/test/zone-new-bridge/settings \
9b01a925 676 test/nitsi/test/zone-port-attach-bridge/settings
1908d2b3
MT
677
678NITSI_ENVIRONMENT =
679
680.PHONY: $(NITSI_TESTS)
59281a53 681$(NITSI_TESTS): % : dist %/recipe %/settings test/nitsi/test/settings $(VIRTUAL_ENVIRONMENT_FILES) $(VIRTUAL_ENVIRONMENT_IMAGES) $(NITSI_INCLUDE_RECIPES)
91ee6559 682 $(AM_V_NITSI) $(NITSI_ENVIRONMENT) $(NITSI) --log-level error run-test -d $@ \
e3e44ab6 683 --default-settings $(abs_builddir)/test/nitsi/test/settings --interactive-error-handling
1908d2b3
MT
684
685.PHONY: nitsi
59281a53 686nitsi: $(NITSI_TESTS)
c4966dd6
MT
687
688# Downloads a virtual image file and extracts it
689$(VIRTUAL_ENVIRONMENT_IMAGES):
690 $(AM_V_DOWNLOAD)$(MKDIR_P) $(dir $@) && \
691 $(WGET) -qO - $(VIRTUAL_ENVIRONMENT_IMAGES_DOWNLOAD_URL)/$(notdir $@).xz | xz -qd > $@