]> git.ipfire.org Git - people/ms/network.git/blob - Makefile.am
Use "ip link set X master" where ever we can
[people/ms/network.git] / Makefile.am
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
21 ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
22 AM_MAKEFLAGS = --no-print-directory
23 AUTOMAKE_OPTIONS = color-tests
24
25 # remove target it the command fails
26 .DELETE_ON_ERROR:
27
28 # keep itermediate files
29 .SECONDARY:
30
31 bashcompletiondir= $(datadir)/bash-completion/completions
32 libexecdir = $(prefix)/lib
33 pkgconfigdatadir = $(datadir)/pkgconfig
34 pppdir = $(sysconfdir)/ppp
35 systemconfigdir = $(datadir)/network
36 sysctldir = $(prefix)/lib/sysctl.d
37 tmpfilesdir = $(prefix)/lib/tmpfiles.d
38 udevrulesdir = $(udevdir)/rules.d
39
40 networkdir = $(libexecdir)/network
41 helpersdir = $(networkdir)/helpers
42
43 macrosdir = $(libexecdir)/firewall/macros
44
45 hooksdir = $(networkdir)/hooks
46 hooks_configsdir = $(hooksdir)/configs
47 hooks_portsdir = $(hooksdir)/ports
48 hooks_zonesdir = $(hooksdir)/zones
49
50 triggersdir = $(networkdir)/triggers
51
52 logdir = $(localestatedir)/log/network
53
54 CLEANFILES =
55 DISTCLEANFILES =
56 EXTRA_DIST =
57 INSTALL_DIRS =
58 INSTALL_EXEC_HOOKS =
59 UNINSTALL_EXEC_HOOKS =
60 noinst_DATA =
61
62 AM_CFLAGS = $(OUR_CFLAGS)
63 AM_CPPFLAGS = $(OUR_CPPFLAGS)
64 AM_LDFLAGS = $(OUR_LDFLAGS)
65
66 DISTCHECK_CONFIGURE_FLAGS = \
67 --with-systemdsystemunitdir=$$dc_install_base/$(systemdsystemunitdir) \
68 --with-udevdir=$$dc_install_base/$(udevdir)
69
70 install-directories-hook:
71 $(MKDIR_P) $(addprefix $(DESTDIR),$(INSTALL_DIRS))
72
73 INSTALL_EXEC_HOOKS += \
74 install-directories-hook
75
76 # ------------------------------------------------------------------------------
77
78 AM_V_XSLT = $(AM_V_XSLT_$(V))
79 AM_V_XSLT_ = $(AM_V_XSLT_$(AM_DEFAULT_VERBOSITY))
80 AM_V_XSLT_0 = @echo " XSLT " $@;
81
82 # ------------------------------------------------------------------------------
83
84 dist_doc_DATA = \
85 README \
86 docs/CODING_STYLE \
87 docs/COPYING
88
89 dist_sbin_SCRIPTS = \
90 src/dhclient-script \
91 src/firewall-config \
92 src/firewall4 \
93 src/firewall6 \
94 src/network
95
96 network_SCRIPTS = \
97 src/functions/functions
98
99 CLEANFILES += \
100 src/functions/functions
101
102 EXTRA_DIST += \
103 src/functions/functions.in
104
105 dist_network_SCRIPTS = \
106 src/functions/functions.at \
107 src/functions/functions.auth \
108 src/functions/functions.batman-adv \
109 src/functions/functions.bonding \
110 src/functions/functions.bridge \
111 src/functions/functions.cli \
112 src/functions/functions.cli.firewall \
113 src/functions/functions.colors \
114 src/functions/functions.config \
115 src/functions/functions.conntrack \
116 src/functions/functions.constants \
117 src/functions/functions.constants-firewall \
118 src/functions/functions.db \
119 src/functions/functions.description \
120 src/functions/functions.device \
121 src/functions/functions.dhclient \
122 src/functions/functions.dhcpd \
123 src/functions/functions.distro \
124 src/functions/functions.dns \
125 src/functions/functions.dummy \
126 src/functions/functions.editor \
127 src/functions/functions.firewall \
128 src/functions/functions.firewall-policy \
129 src/functions/functions.firewall-zones \
130 src/functions/functions.he \
131 src/functions/functions.hook \
132 src/functions/functions.hostapd \
133 src/functions/functions.hotplug \
134 src/functions/functions.http \
135 src/functions/functions.interrupts \
136 src/functions/functions.ip \
137 src/functions/functions.ipsec \
138 src/functions/functions.iptables \
139 src/functions/functions.ip-tunnel \
140 src/functions/functions.ipv4 \
141 src/functions/functions.ipv6 \
142 src/functions/functions.list \
143 src/functions/functions.lock \
144 src/functions/functions.logging \
145 src/functions/functions.macros \
146 src/functions/functions.modem \
147 src/functions/functions.phy \
148 src/functions/functions.ports \
149 src/functions/functions.ppp \
150 src/functions/functions.pppoe-server \
151 src/functions/functions.radvd \
152 src/functions/functions.route \
153 src/functions/functions.routing \
154 src/functions/functions.serial \
155 src/functions/functions.service \
156 src/functions/functions.settings \
157 src/functions/functions.stp \
158 src/functions/functions.sysctl \
159 src/functions/functions.system \
160 src/functions/functions.triggers \
161 src/functions/functions.usb \
162 src/functions/functions.util \
163 src/functions/functions.vlan \
164 src/functions/functions.vpn \
165 src/functions/functions.vpn-security-policies \
166 src/functions/functions.wireless \
167 src/functions/functions.wpa_supplicant \
168 src/functions/functions.zone \
169 src/network-radvd-config \
170 src/dhclient-helper \
171 src/header-config \
172 src/header-port \
173 src/header-zone \
174 src/ppp/dialer \
175 src/ppp/pppoe-server
176
177 dist_helpers_SCRIPTS = \
178 src/helpers/bridge-stp \
179 src/helpers/dhcpd-config-helper \
180 src/helpers/firewall-kernel-init \
181 src/helpers/hostapd-config-helper \
182 src/helpers/ipsec-updown \
183 src/helpers/pppd-angel \
184 src/helpers/wpa_supplicant \
185 src/helpers/wpa_supplicant-config-helper
186
187 bin_PROGRAMS = \
188 src/inetcalc
189
190 src_inetcalc_SOURCES = \
191 src/inetcalc.c
192
193 bridge-stp-install-hook: bridge-stp-uninstall-hook
194 ln -svf --relative $(DESTDIR)$(helpersdir)/bridge-stp $(DESTDIR)$(sbindir)/
195
196 bridge-stp-uninstall-hook:
197 rm -f $(DESTDIR)$(sbindir)/bridge-stp
198
199 INSTALL_EXEC_HOOKS += bridge-stp-install-hook
200 UNINSTALL_EXEC_HOOKS += bridge-stp-uninstall-hook
201
202 dist_hooks_configs_SCRIPTS = \
203 src/hooks/configs/dhcp \
204 src/hooks/configs/ipv4-static \
205 src/hooks/configs/ipv6-auto \
206 src/hooks/configs/ipv6-static \
207 src/hooks/configs/pppoe-server
208
209 dist_hooks_ports_SCRIPTS = \
210 src/hooks/ports/batman-adv \
211 src/hooks/ports/bonding \
212 src/hooks/ports/dummy \
213 src/hooks/ports/ethernet \
214 src/hooks/ports/vlan \
215 src/hooks/ports/wireless-adhoc \
216 src/hooks/ports/wireless-ap
217
218 dist_hooks_zones_SCRIPTS = \
219 src/hooks/zones/6to4-tunnel \
220 src/hooks/zones/bridge \
221 src/hooks/zones/modem \
222 src/hooks/zones/pppoe \
223 src/hooks/zones/wireless
224
225 # ------------------------------------------------------------------------------
226
227 ppp_SCRIPTS = \
228 src/ppp/ip-updown
229
230 CLEANFILES += \
231 src/ppp/ip-updown
232
233 EXTRA_DIST += \
234 src/ppp/ip-updown.in
235
236 INSTALL_DIRS += \
237 $(pppdir) \
238 $(logdir)
239
240 ppp-install-hook:
241 ln -svf ip-updown $(DESTDIR)$(pppdir)/ip-pre-up
242 ln -svf ip-updown $(DESTDIR)$(pppdir)/ip-up
243 ln -svf ip-updown $(DESTDIR)$(pppdir)/ip-down
244 ln -svf ip-updown $(DESTDIR)$(pppdir)/ipv6-up
245 ln -svf ip-updown $(DESTDIR)$(pppdir)/ipv6-down
246
247 ppp-uninstall-hook:
248 rm -f $(DESTDIR)$(pppdir)/ip-{down,pre-up,up}
249 rm -f $(DESTDIR)$(pppdir)/ipv6-{down,up}
250
251 INSTALL_EXEC_HOOKS += ppp-install-hook
252 UNINSTALL_EXEC_HOOKS += ppp-uninstall-hook
253
254 # ------------------------------------------------------------------------------
255
256 if HAVE_SYSTEMD
257 systemdsystemunit_DATA = \
258 src/systemd/firewall4.service \
259 src/systemd/firewall6.service \
260 src/systemd/firewall-init.service \
261 src/systemd/network-init.service \
262 src/systemd/network@.service
263
264 CLEANFILES += \
265 $(systemdsystemunit_DATA)
266
267 INSTALL_DIRS += \
268 $(systemdsystemunitdir)
269 endif
270
271 EXTRA_DIST += \
272 src/systemd/firewall4.service.in \
273 src/systemd/firewall6.service.in \
274 src/systemd/firewall-init.service.in \
275 src/systemd/network-init.service.in \
276 src/systemd/network@.service.in
277
278 # ------------------------------------------------------------------------------
279
280 systemconfig_vpndir = $(systemconfigdir)/vpn
281
282 dist_systemconfig_vpn_security_policies_DATA = \
283 config/vpn/security-policies/performance \
284 config/vpn/security-policies/system
285
286 systemconfig_vpn_security_policiesdir = $(systemconfig_vpndir)/security-policies
287
288 # ------------------------------------------------------------------------------
289
290 dist_sysctl_DATA = \
291 src/sysctl/network.conf
292
293 # ------------------------------------------------------------------------------
294
295 dist_bashcompletion_SCRIPTS = \
296 src/bash-completion/network
297
298 # ------------------------------------------------------------------------------
299
300 dist_tmpfiles_DATA = \
301 src/tmpfiles/network.conf
302
303 # ------------------------------------------------------------------------------
304
305 if HAVE_UDEV
306 dist_udev_SCRIPTS = \
307 src/udev/network-hotplug \
308 src/udev/network-hotplug-rename \
309 src/udev/network-hotplug-serial
310
311 dist_udevrules_DATA = \
312 src/udev/rules.d/50-serial-whitelist.rules \
313 src/udev/rules.d/60-net.rules
314
315 INSTALL_DIRS += \
316 $(udevdir) \
317 $(udevrulesdir)
318 endif
319
320 # ------------------------------------------------------------------------------
321
322 pkgconfigdata_DATA = \
323 src/network.pc
324
325 CLEANFILES += \
326 $(pkgconfigdata_DATA)
327
328 EXTRA_DIST += \
329 src/network.pc.in
330
331 # ------------------------------------------------------------------------------
332
333 dist_macros_DATA = \
334 src/macros/DHCP \
335 src/macros/HTTP \
336 src/macros/HTTPS \
337 src/macros/WWW
338
339 # ------------------------------------------------------------------------------
340
341 INSTALL_DIRS += \
342 $(triggersdir)
343
344 # ------------------------------------------------------------------------------
345
346 MANPAGES = \
347 man/firewall-settings.8 \
348 man/network.8 \
349 man/network-color.8 \
350 man/network-description.8 \
351 man/network-device.8 \
352 man/network-dhcp.8 \
353 man/network-dns-server.8 \
354 man/network-performance-tuning.8 \
355 man/network-port.8 \
356 man/network-port-batman-adv.8 \
357 man/network-port-batman-adv-port.8 \
358 man/network-quick-start.8 \
359 man/network-route.8 \
360 man/network-route-static.8 \
361 man/network-settings.8 \
362 man/network-zone.8 \
363 man/network-zone-6to4-tunnel.8 \
364 man/network-zone-bridge.8 \
365 man/network-zone-config-pppoe-server.8 \
366 man/network-zone-modem.8 \
367 man/network-zone-pppoe.8 \
368 man/network-zone-wireless.8
369
370 MANPAGES_XML = $(patsubst %.8,%.xml,$(MANPAGES))
371 MANPAGES_HTML = $(patsubst %.xml,%.html,$(MANPAGES_XML))
372
373 .PHONY: man
374 man: $(MANPAGES) $(MANPAGES_HTML)
375
376 man_MANS = \
377 $(MANPAGES)
378
379 noinst_DATA += \
380 $(MANPAGES_HTML)
381
382 CLEANFILES += \
383 $(man_MANS) \
384 $(MANPAGES_HTML)
385
386 EXTRA_DIST += \
387 $(MANPAGES_XML) \
388 man/custom-html.xsl
389
390 XSLTPROC_FLAGS = \
391 --nonet \
392 --stringparam man.output.quietly 1 \
393 --stringparam funcsynopsis.style ansi \
394 --stringparam man.th.extra1.suppress 1 \
395 --stringparam man.authors.section.enabled 1 \
396 --stringparam man.copyright.section.enabled 1
397
398 XSLTPROC_COMMAND_MAN = \
399 $(AM_V_XSLT)$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) \
400 http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
401
402 XSLTPROC_COMMAND_HTML = \
403 $(AM_V_XSLT)$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) $(srcdir)/man/custom-html.xsl $<
404
405 man/%.8: man/%.xml
406 $(XSLTPROC_COMMAND_MAN)
407
408 man/%.html: man/%.xml man/custom-html.xsl
409 $(XSLTPROC_COMMAND_HTML)
410
411 # ------------------------------------------------------------------------------
412
413 substitutions = \
414 '|PACKAGE_NAME=$(PACKAGE_NAME)|' \
415 '|PACKAGE_URL=$(PACKAGE_URL)|' \
416 '|PACKAGE_VERSION=$(PACKAGE_VERSION)|' \
417 '|prefix=$(prefix)|' \
418 '|exec_prefix=$(exec_prefix)|' \
419 '|sbindir=$(sbindir)|' \
420 '|networkdir=$(networkdir)|' \
421 '|helpersdir=$(helpersdir)|'
422
423 SED_PROCESS = \
424 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
425 $(SED) $(subst '|,-e 's|@,$(subst =,\@|,$(subst |',|g',$(substitutions)))) \
426 < $< > $@
427
428 src/functions/functions: src/functions/functions.in Makefile
429 $(SED_PROCESS)
430
431 src/ppp/ip-updown: src/ppp/ip-updown.in Makefile
432 $(SED_PROCESS)
433
434 src/systemd/%: src/systemd/%.in Makefile
435 $(SED_PROCESS)
436
437 src/%.pc: src/%.pc.in Makefile
438 $(SED_PROCESS)
439
440 INSTALL_DIRS += \
441 $(sbindir)
442
443 install-exec-hook: $(INSTALL_EXEC_HOOKS)
444
445 uninstall-hook: $(UNINSTALL_EXEC_HOOKS)
446
447 # - testsuite ------------------------------------------------------------------
448
449 TESTS_ENVIRONMENT = \
450 PATH=$(top_builddir)/src:$(PATH) \
451 functions=$(abs_builddir)/src/functions/functions \
452 networkdir=$(abs_srcdir)/src/functions \
453 testdir=$(top_srcdir)/test
454
455 dist_check_DATA = \
456 test/constants.sh \
457 test/test-functions
458
459 dist_check_SCRIPTS = \
460 $(TESTS)
461
462 TESTS = \
463 test/load-library \
464 test/functions/ip/ip_detect_protocol \
465 test/functions/ip/ip_get_prefix \
466 test/functions/ip/ip_net_is_valid \
467 test/functions/ip/ip_is_valid \
468 test/functions/ip/ip_network_is_subnet_of \
469 test/functions/ip/ip_prefix_is_valid \
470 test/functions/ip/ip_protocol_is_supported \
471 test/functions/ip/ip_split_prefix