1 # make this relative to the location of strongswan.conf
2 strongswanconfdir = `dirname $(strongswan_conf)`
3 strongswanddir = $(strongswanconfdir)/strongswan.d
4 charonconfdir = $(strongswanddir)/charon
5 # copy these files also to /usr/share
6 templatesdir = $(pkgdatadir)/templates/config
7 optionstemplatedir = $(templatesdir)/strongswan.d
8 pluginstemplatedir = $(templatesdir)/plugins
13 options/charon-logging.opt \
24 plugins/android_log.opt \
26 plugins/attr-sql.opt \
27 plugins/certexpire.opt \
28 plugins/coupling.opt \
31 plugins/duplicheck.opt \
33 plugins/eap-aka-3ggp2.opt \
34 plugins/eap-dynamic.opt \
36 plugins/eap-peap.opt \
37 plugins/eap-radius.opt \
39 plugins/eap-simaka-sql.opt \
42 plugins/eap-ttls.opt \
43 plugins/error-notify.opt \
46 plugins/imc-attestation.opt \
48 plugins/imc-scanner.opt \
49 plugins/imc-swid.opt \
50 plugins/imc-test.opt \
51 plugins/imv-attestation.opt \
53 plugins/imv-scanner.opt \
54 plugins/imv-swid.opt \
55 plugins/imv-test.opt \
56 plugins/ipseckey.opt \
58 plugins/kernel-klips.opt \
59 plugins/kernel-libipsec.opt \
60 plugins/kernel-netlink.opt \
61 plugins/kernel-pfroute.opt \
62 plugins/load-tester.opt \
70 plugins/socket-default.opt \
73 plugins/systime-fix.opt \
74 plugins/tnc-ifmap.opt \
78 plugins/tnccs-11.opt \
79 plugins/tnccs-20.opt \
83 plugins/whitelist.opt \
84 plugins/xauth-eap.opt \
87 alloptions = $(options) $(plugins)
89 confsnippets = $(alloptions:opt=conf)
91 # we only install snippets for enabled plugins
92 plugins_install_tmp = $(charon_plugins:%=plugins/%.tmp)
93 plugins_install_src = $(charon_plugins:%=plugins/%.conf)
94 # only install snippets for enabled components
95 # has to be defined via autoconf as we can't do it with automake conditionals
96 options_install_src = $(strongswan_options:%=options/%.conf)
98 templates_DATA = strongswan.conf
99 optionstemplate_DATA = $(options_install_src)
100 pluginstemplate_DATA = $(plugins_install_src)
104 BUILT_SOURCES = default.conf strongswan.conf.5.main $(confsnippets)
105 EXTRA_DIST = format-options.py strongswan.conf default.opt \
106 default.conf strongswan.conf.5.main $(alloptions) $(confsnippets)
108 CLEANFILES=$(man_MANS)
115 -e "s:\@PLUGIN_NAME\@:`basename $< .opt`:" \
116 $(srcdir)/default.opt | cat - $< | \
117 $(PYTHON) $(srcdir)/format-options.py -f conf -r charon.plugins > $(srcdir)/$@ \
120 $(PYTHON) $(srcdir)/format-options.py -f conf -r charon.plugins $< > $(srcdir)/$@ \
124 # we need another implicit rule to generate files from the generic template only
125 # if the rules above did not catch it. this requires an intermediate step that
126 # generates a copy of the generic config template.
127 $(plugins_install_tmp):
128 @mkdir -p $(builddir)/plugins
129 @cp $(srcdir)/default.conf $(builddir)/$@
134 -e "s:\@PLUGIN_NAME\@:`basename $< .tmp`:" \
135 $(builddir)/$< > $(builddir)/$@
137 strongswan.conf.5.main: $(alloptions)
139 cd $(srcdir) && $(PYTHON) format-options.py -f man $(alloptions) > $@
141 strongswan.conf.5: strongswan.conf.5.head strongswan.conf.5.main strongswan.conf.5.tail
143 cat strongswan.conf.5.head $(srcdir)/strongswan.conf.5.main strongswan.conf.5.tail > $@
146 rm -f plugins/*.conf plugins/*.tmp
148 maintainer-clean-local:
150 rm -f $(confsnippets) default.conf plugins/*.conf plugins/*.tmp
152 install-data-local: $(plugins_install_src)
153 test -e "$(DESTDIR)${strongswanconfdir}" || $(INSTALL) -d "$(DESTDIR)$(strongswanconfdir)"
154 test -e "$(DESTDIR)${strongswanddir}" || $(INSTALL) -d "$(DESTDIR)$(strongswanddir)"
155 test -e "$(DESTDIR)${charonconfdir}" || $(INSTALL) -d "$(DESTDIR)$(charonconfdir)"
156 test -e "$(DESTDIR)$(strongswanconfdir)/strongswan.conf" || $(INSTALL) -m 644 $(srcdir)/strongswan.conf $(DESTDIR)$(strongswanconfdir)/strongswan.conf || true
157 for f in $(options_install_src); do \
158 name=`basename $$f`; \
159 test -f "$(DESTDIR)$(strongswanddir)/$$name" || $(INSTALL) -m 644 "$(srcdir)/$$f" "$(DESTDIR)$(strongswanddir)/$$name" || true; \
161 for f in $(plugins_install_src); do \
162 name=`basename $$f`; \
163 if test -f "$$f"; then dir=; else dir="$(srcdir)/"; fi; \
164 test -f "$(DESTDIR)$(charonconfdir)/$$name" || $(INSTALL) -m 644 "$$dir$$f" "$(DESTDIR)$(charonconfdir)/$$name" || true; \