]>
Commit | Line | Data |
---|---|---|
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 | ||
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 | ||
bae37360 | 31 | bashcompletiondir= $(datadir)/bash-completion/completions |
5ca9dc30 MT |
32 | libexecdir = $(prefix)/lib |
33 | pkgconfigdatadir = $(datadir)/pkgconfig | |
34 | pppdir = $(sysconfdir)/ppp | |
5e84cd41 | 35 | systemconfigdir = $(datadir)/network |
5ca9dc30 MT |
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 | |
7d2cb6d3 | 46 | hooks_configsdir = $(hooksdir)/configs |
5ca9dc30 MT |
47 | hooks_portsdir = $(hooksdir)/ports |
48 | hooks_zonesdir = $(hooksdir)/zones | |
49 | ||
de3cecef MT |
50 | triggersdir = $(networkdir)/triggers |
51 | ||
9c9d0585 SS |
52 | logdir = $(localestatedir)/log/network |
53 | ||
5ca9dc30 MT |
54 | CLEANFILES = |
55 | DISTCLEANFILES = | |
56 | EXTRA_DIST = | |
57 | INSTALL_DIRS = | |
58 | INSTALL_EXEC_HOOKS = | |
59 | UNINSTALL_EXEC_HOOKS = | |
60 | noinst_DATA = | |
61 | ||
e708653f SS |
62 | AM_CFLAGS = $(OUR_CFLAGS) |
63 | AM_CPPFLAGS = $(OUR_CPPFLAGS) | |
64 | AM_LDFLAGS = $(OUR_LDFLAGS) | |
65 | ||
5ca9dc30 MT |
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 = \ | |
1337eee2 | 85 | README \ |
dd46582c | 86 | docs/CODING_STYLE \ |
1337eee2 | 87 | docs/COPYING |
5ca9dc30 MT |
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 = \ | |
5ca9dc30 MT |
106 | src/functions/functions.at \ |
107 | src/functions/functions.auth \ | |
5ca9dc30 MT |
108 | src/functions/functions.bonding \ |
109 | src/functions/functions.bridge \ | |
110 | src/functions/functions.cli \ | |
111 | src/functions/functions.cli.firewall \ | |
112 | src/functions/functions.colors \ | |
113 | src/functions/functions.config \ | |
114 | src/functions/functions.conntrack \ | |
115 | src/functions/functions.constants \ | |
116 | src/functions/functions.constants-firewall \ | |
117 | src/functions/functions.db \ | |
5ccc7299 | 118 | src/functions/functions.description \ |
5ca9dc30 MT |
119 | src/functions/functions.device \ |
120 | src/functions/functions.dhclient \ | |
121 | src/functions/functions.dhcpd \ | |
122 | src/functions/functions.distro \ | |
123 | src/functions/functions.dns \ | |
124 | src/functions/functions.dummy \ | |
e524986c | 125 | src/functions/functions.editor \ |
5ca9dc30 MT |
126 | src/functions/functions.firewall \ |
127 | src/functions/functions.firewall-policy \ | |
128 | src/functions/functions.firewall-zones \ | |
129 | src/functions/functions.he \ | |
130 | src/functions/functions.hook \ | |
131 | src/functions/functions.hostapd \ | |
b8026986 | 132 | src/functions/functions.hotplug \ |
5ca9dc30 | 133 | src/functions/functions.http \ |
de72bd91 | 134 | src/functions/functions.interrupts \ |
5ca9dc30 | 135 | src/functions/functions.ip \ |
be844b7b | 136 | src/functions/functions.ipsec \ |
4e78b7ad | 137 | src/functions/functions.ipsec-pool \ |
5ca9dc30 MT |
138 | src/functions/functions.iptables \ |
139 | src/functions/functions.ip-tunnel \ | |
140 | src/functions/functions.ipv4 \ | |
141 | src/functions/functions.ipv6 \ | |
5ca9dc30 MT |
142 | src/functions/functions.list \ |
143 | src/functions/functions.lock \ | |
144 | src/functions/functions.logging \ | |
145 | src/functions/functions.macros \ | |
5ca9dc30 MT |
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 \ | |
5ca9dc30 MT |
152 | src/functions/functions.route \ |
153 | src/functions/functions.routing \ | |
154 | src/functions/functions.serial \ | |
155 | src/functions/functions.service \ | |
e9df08ad | 156 | src/functions/functions.settings \ |
5ca9dc30 | 157 | src/functions/functions.stp \ |
5ca9dc30 | 158 | src/functions/functions.sysctl \ |
de72bd91 | 159 | src/functions/functions.system \ |
de3cecef | 160 | src/functions/functions.triggers \ |
5ca9dc30 MT |
161 | src/functions/functions.usb \ |
162 | src/functions/functions.util \ | |
163 | src/functions/functions.vlan \ | |
2da98f56 | 164 | src/functions/functions.vpn \ |
3eae7bed | 165 | src/functions/functions.vpn-security-policies \ |
5ca9dc30 | 166 | src/functions/functions.wireless \ |
49958b8c | 167 | src/functions/functions.wireless-networks \ |
5ca9dc30 MT |
168 | src/functions/functions.wpa_supplicant \ |
169 | src/functions/functions.zone \ | |
170 | src/network-radvd-config \ | |
171 | src/dhclient-helper \ | |
172 | src/header-config \ | |
173 | src/header-port \ | |
174 | src/header-zone \ | |
175 | src/ppp/dialer \ | |
176 | src/ppp/pppoe-server | |
177 | ||
178 | dist_helpers_SCRIPTS = \ | |
5ca9dc30 MT |
179 | src/helpers/dhcpd-config-helper \ |
180 | src/helpers/firewall-kernel-init \ | |
181 | src/helpers/hostapd-config-helper \ | |
67baa452 | 182 | src/helpers/ipsec-updown \ |
5ca9dc30 | 183 | src/helpers/pppd-angel \ |
02807ad2 | 184 | src/helpers/wpa_supplicant |
5ca9dc30 | 185 | |
13a6e69f MT |
186 | bin_PROGRAMS = \ |
187 | src/inetcalc | |
188 | ||
189 | src_inetcalc_SOURCES = \ | |
190 | src/inetcalc.c | |
191 | ||
7d2cb6d3 | 192 | dist_hooks_configs_SCRIPTS = \ |
9353a4e4 | 193 | src/hooks/configs/dhcp \ |
7d2cb6d3 | 194 | src/hooks/configs/ipv4-static \ |
b73e9d43 MT |
195 | src/hooks/configs/ipv6-auto \ |
196 | src/hooks/configs/ipv6-static \ | |
7d2cb6d3 MT |
197 | src/hooks/configs/pppoe-server |
198 | ||
5ca9dc30 | 199 | dist_hooks_ports_SCRIPTS = \ |
5ca9dc30 MT |
200 | src/hooks/ports/bonding \ |
201 | src/hooks/ports/dummy \ | |
202 | src/hooks/ports/ethernet \ | |
5ca9dc30 | 203 | src/hooks/ports/vlan \ |
727248f0 MT |
204 | src/hooks/ports/wireless-ap \ |
205 | src/hooks/ports/wireless-mesh | |
5ca9dc30 MT |
206 | |
207 | dist_hooks_zones_SCRIPTS = \ | |
5ca9dc30 | 208 | src/hooks/zones/6to4-tunnel \ |
5ca9dc30 | 209 | src/hooks/zones/bridge \ |
5ca9dc30 MT |
210 | src/hooks/zones/modem \ |
211 | src/hooks/zones/pppoe \ | |
5ca9dc30 MT |
212 | src/hooks/zones/wireless |
213 | ||
214 | # ------------------------------------------------------------------------------ | |
215 | ||
216 | ppp_SCRIPTS = \ | |
217 | src/ppp/ip-updown | |
218 | ||
219 | CLEANFILES += \ | |
220 | src/ppp/ip-updown | |
221 | ||
222 | EXTRA_DIST += \ | |
223 | src/ppp/ip-updown.in | |
224 | ||
225 | INSTALL_DIRS += \ | |
9c9d0585 SS |
226 | $(pppdir) \ |
227 | $(logdir) | |
5ca9dc30 MT |
228 | |
229 | ppp-install-hook: | |
230 | ln -svf ip-updown $(DESTDIR)$(pppdir)/ip-pre-up | |
231 | ln -svf ip-updown $(DESTDIR)$(pppdir)/ip-up | |
232 | ln -svf ip-updown $(DESTDIR)$(pppdir)/ip-down | |
233 | ln -svf ip-updown $(DESTDIR)$(pppdir)/ipv6-up | |
234 | ln -svf ip-updown $(DESTDIR)$(pppdir)/ipv6-down | |
235 | ||
236 | ppp-uninstall-hook: | |
237 | rm -f $(DESTDIR)$(pppdir)/ip-{down,pre-up,up} | |
238 | rm -f $(DESTDIR)$(pppdir)/ipv6-{down,up} | |
239 | ||
240 | INSTALL_EXEC_HOOKS += ppp-install-hook | |
241 | UNINSTALL_EXEC_HOOKS += ppp-uninstall-hook | |
242 | ||
243 | # ------------------------------------------------------------------------------ | |
244 | ||
245 | if HAVE_SYSTEMD | |
246 | systemdsystemunit_DATA = \ | |
247 | src/systemd/firewall4.service \ | |
248 | src/systemd/firewall6.service \ | |
249 | src/systemd/firewall-init.service \ | |
250 | src/systemd/network-init.service \ | |
251 | src/systemd/network@.service | |
252 | ||
253 | CLEANFILES += \ | |
254 | $(systemdsystemunit_DATA) | |
255 | ||
256 | INSTALL_DIRS += \ | |
257 | $(systemdsystemunitdir) | |
258 | endif | |
259 | ||
260 | EXTRA_DIST += \ | |
261 | src/systemd/firewall4.service.in \ | |
262 | src/systemd/firewall6.service.in \ | |
263 | src/systemd/firewall-init.service.in \ | |
264 | src/systemd/network-init.service.in \ | |
265 | src/systemd/network@.service.in | |
266 | ||
267 | # ------------------------------------------------------------------------------ | |
268 | ||
5e84cd41 MT |
269 | systemconfig_vpndir = $(systemconfigdir)/vpn |
270 | ||
271 | dist_systemconfig_vpn_security_policies_DATA = \ | |
56d5efa7 | 272 | config/vpn/security-policies/performance \ |
5e84cd41 MT |
273 | config/vpn/security-policies/system |
274 | ||
275 | systemconfig_vpn_security_policiesdir = $(systemconfig_vpndir)/security-policies | |
276 | ||
277 | # ------------------------------------------------------------------------------ | |
278 | ||
5ca9dc30 MT |
279 | dist_sysctl_DATA = \ |
280 | src/sysctl/network.conf | |
281 | ||
282 | # ------------------------------------------------------------------------------ | |
283 | ||
bae37360 MT |
284 | dist_bashcompletion_SCRIPTS = \ |
285 | src/bash-completion/network | |
286 | ||
287 | # ------------------------------------------------------------------------------ | |
288 | ||
5ca9dc30 | 289 | dist_tmpfiles_DATA = \ |
f9dac5a0 | 290 | src/tmpfiles/network.conf |
5ca9dc30 MT |
291 | |
292 | # ------------------------------------------------------------------------------ | |
293 | ||
294 | if HAVE_UDEV | |
295 | dist_udev_SCRIPTS = \ | |
296 | src/udev/network-hotplug \ | |
297 | src/udev/network-hotplug-rename \ | |
298 | src/udev/network-hotplug-serial | |
299 | ||
300 | dist_udevrules_DATA = \ | |
301 | src/udev/rules.d/50-serial-whitelist.rules \ | |
302 | src/udev/rules.d/60-net.rules | |
303 | ||
304 | INSTALL_DIRS += \ | |
305 | $(udevdir) \ | |
306 | $(udevrulesdir) | |
307 | endif | |
308 | ||
309 | # ------------------------------------------------------------------------------ | |
310 | ||
311 | pkgconfigdata_DATA = \ | |
312 | src/network.pc | |
313 | ||
314 | CLEANFILES += \ | |
315 | $(pkgconfigdata_DATA) | |
316 | ||
317 | EXTRA_DIST += \ | |
318 | src/network.pc.in | |
319 | ||
320 | # ------------------------------------------------------------------------------ | |
321 | ||
322 | dist_macros_DATA = \ | |
323 | src/macros/DHCP \ | |
324 | src/macros/HTTP \ | |
325 | src/macros/HTTPS \ | |
326 | src/macros/WWW | |
327 | ||
328 | # ------------------------------------------------------------------------------ | |
329 | ||
ec3fe5b7 | 330 | INSTALL_DIRS += \ |
de3cecef MT |
331 | $(triggersdir) |
332 | ||
333 | # ------------------------------------------------------------------------------ | |
334 | ||
5ca9dc30 | 335 | MANPAGES = \ |
2b0ff832 | 336 | man/firewall-settings.8 \ |
5ca9dc30 | 337 | man/network.8 \ |
89c81bcf | 338 | man/network-color.8 \ |
6135a5b3 | 339 | man/network-description.8 \ |
5ca9dc30 | 340 | man/network-device.8 \ |
427f5ae2 | 341 | man/network-dhcp.8 \ |
5ca9dc30 | 342 | man/network-dns-server.8 \ |
de72bd91 | 343 | man/network-performance-tuning.8 \ |
7a302fa7 | 344 | man/network-port.8 \ |
94eab754 | 345 | man/network-quick-start.8 \ |
5ca9dc30 | 346 | man/network-route.8 \ |
e023191b | 347 | man/network-route-static.8 \ |
2b0ff832 | 348 | man/network-settings.8 \ |
5ca9dc30 | 349 | man/network-zone.8 \ |
5ca9dc30 | 350 | man/network-zone-6to4-tunnel.8 \ |
5ca9dc30 MT |
351 | man/network-zone-bridge.8 \ |
352 | man/network-zone-config-pppoe-server.8 \ | |
7a302fa7 | 353 | man/network-zone-modem.8 \ |
2fb7ae4d MT |
354 | man/network-zone-pppoe.8 \ |
355 | man/network-zone-wireless.8 | |
5ca9dc30 MT |
356 | |
357 | MANPAGES_XML = $(patsubst %.8,%.xml,$(MANPAGES)) | |
358 | MANPAGES_HTML = $(patsubst %.xml,%.html,$(MANPAGES_XML)) | |
359 | ||
360 | .PHONY: man | |
361 | man: $(MANPAGES) $(MANPAGES_HTML) | |
362 | ||
363 | man_MANS = \ | |
364 | $(MANPAGES) | |
365 | ||
366 | noinst_DATA += \ | |
367 | $(MANPAGES_HTML) | |
368 | ||
369 | CLEANFILES += \ | |
370 | $(man_MANS) \ | |
371 | $(MANPAGES_HTML) | |
372 | ||
373 | EXTRA_DIST += \ | |
374 | $(MANPAGES_XML) \ | |
375 | man/custom-html.xsl | |
376 | ||
377 | XSLTPROC_FLAGS = \ | |
378 | --nonet \ | |
379 | --stringparam man.output.quietly 1 \ | |
380 | --stringparam funcsynopsis.style ansi \ | |
381 | --stringparam man.th.extra1.suppress 1 \ | |
382 | --stringparam man.authors.section.enabled 1 \ | |
383 | --stringparam man.copyright.section.enabled 1 | |
384 | ||
385 | XSLTPROC_COMMAND_MAN = \ | |
386 | $(AM_V_XSLT)$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) \ | |
387 | http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $< | |
388 | ||
389 | XSLTPROC_COMMAND_HTML = \ | |
390 | $(AM_V_XSLT)$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) $(srcdir)/man/custom-html.xsl $< | |
391 | ||
392 | man/%.8: man/%.xml | |
393 | $(XSLTPROC_COMMAND_MAN) | |
394 | ||
395 | man/%.html: man/%.xml man/custom-html.xsl | |
396 | $(XSLTPROC_COMMAND_HTML) | |
397 | ||
398 | # ------------------------------------------------------------------------------ | |
399 | ||
400 | substitutions = \ | |
401 | '|PACKAGE_NAME=$(PACKAGE_NAME)|' \ | |
402 | '|PACKAGE_URL=$(PACKAGE_URL)|' \ | |
403 | '|PACKAGE_VERSION=$(PACKAGE_VERSION)|' \ | |
404 | '|prefix=$(prefix)|' \ | |
405 | '|exec_prefix=$(exec_prefix)|' \ | |
406 | '|sbindir=$(sbindir)|' \ | |
c6525a63 MT |
407 | '|networkdir=$(networkdir)|' \ |
408 | '|helpersdir=$(helpersdir)|' | |
5ca9dc30 MT |
409 | |
410 | SED_PROCESS = \ | |
411 | $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \ | |
412 | $(SED) $(subst '|,-e 's|@,$(subst =,\@|,$(subst |',|g',$(substitutions)))) \ | |
413 | < $< > $@ | |
414 | ||
415 | src/functions/functions: src/functions/functions.in Makefile | |
416 | $(SED_PROCESS) | |
417 | ||
418 | src/ppp/ip-updown: src/ppp/ip-updown.in Makefile | |
419 | $(SED_PROCESS) | |
420 | ||
421 | src/systemd/%: src/systemd/%.in Makefile | |
422 | $(SED_PROCESS) | |
423 | ||
424 | src/%.pc: src/%.pc.in Makefile | |
425 | $(SED_PROCESS) | |
426 | ||
427 | INSTALL_DIRS += \ | |
428 | $(sbindir) | |
429 | ||
430 | install-exec-hook: $(INSTALL_EXEC_HOOKS) | |
431 | ||
432 | uninstall-hook: $(UNINSTALL_EXEC_HOOKS) | |
433 | ||
434 | # - testsuite ------------------------------------------------------------------ | |
435 | ||
436 | TESTS_ENVIRONMENT = \ | |
8744a476 MT |
437 | PATH=$(top_builddir)/src:$(PATH) \ |
438 | functions=$(abs_builddir)/src/functions/functions \ | |
439 | networkdir=$(abs_srcdir)/src/functions \ | |
440 | testdir=$(top_srcdir)/test | |
441 | ||
442 | dist_check_DATA = \ | |
ee86c73f MT |
443 | test/constants.sh \ |
444 | test/test-functions | |
5ca9dc30 MT |
445 | |
446 | dist_check_SCRIPTS = \ | |
8744a476 | 447 | $(TESTS) |
5ca9dc30 MT |
448 | |
449 | TESTS = \ | |
bb8304ec | 450 | test/load-library \ |
bb8304ec | 451 | test/functions/ip/ip_detect_protocol \ |
bb8304ec | 452 | test/functions/ip/ip_get_prefix \ |
8b0958b2 | 453 | test/functions/ip/ip_net_is_valid \ |
b7fd8067 | 454 | test/functions/ip/ip_is_valid \ |
b862734c | 455 | test/functions/ip/ip_network_is_subnet_of \ |
b7fd8067 MT |
456 | test/functions/ip/ip_prefix_is_valid \ |
457 | test/functions/ip/ip_protocol_is_supported \ | |
458 | test/functions/ip/ip_split_prefix |