File: Makefile.am

package info (click to toggle)
firehol 3.1.7%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,768 kB
  • sloc: sh: 20,852; makefile: 827; perl: 554; sed: 12
file content (44 lines) | stat: -rw-r--r-- 612 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Process this file with automake to produce Makefile.in

examplesdir = $(docdir)/examples

conffiles =

if ENABLE_FIREHOL

examples_SCRIPTS = \
	adblock.sh

conffiles += \
	server-dmz.conf \
	client-all.conf \
	lan-gateway.conf \
	office.conf \
	icmpv6.conf

endif

if ENABLE_FIREQOS

conffiles += \
	fireqos.conf \
	fireqos-multiple-organizations.conf

endif

if ENABLE_VNETBUILD

conffiles += \
	vnetbuild.conf \
	vnetbuild-simple.conf

endif

examples_DATA = $(conffiles)

EXTRA_DIST = \
	$(examples_DATA) \
	$(examples_SCRIPTS)

uninstall-local:
	@-rmdir --ignore-fail-on-non-empty $(DESTDIR)$(examplesdir)