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