12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- sbin_PROGRAMS = swanctl
- swanctl_SOURCES = \
- command.c command.h \
- commands/counters.c \
- commands/initiate.c \
- commands/terminate.c \
- commands/rekey.c \
- commands/redirect.c \
- commands/install.c \
- commands/list_sas.c \
- commands/list_pols.c \
- commands/list_authorities.c \
- commands/list_conns.c \
- commands/list_certs.c \
- commands/list_pools.c \
- commands/list_algs.c \
- commands/flush_certs.c \
- commands/load_all.c \
- commands/load_authorities.h commands/load_authorities.c \
- commands/load_conns.c commands/load_conns.h \
- commands/load_creds.c commands/load_creds.h \
- commands/load_pools.c commands/load_pools.h \
- commands/log.c \
- commands/version.c \
- commands/stats.c \
- commands/reload_settings.c \
- swanctl.c swanctl.h
- swanctl_LDADD = \
- $(top_builddir)/src/libcharon/plugins/vici/libvici.la \
- $(top_builddir)/src/libstrongswan/libstrongswan.la \
- $(PTHREADLIB) $(ATOMICLIB) $(DLLIB)
- swanctl.o : $(top_builddir)/config.status
- AM_CPPFLAGS = \
- -I$(top_srcdir)/src/libstrongswan \
- -I$(top_srcdir)/src/libcharon/plugins/vici \
- -DSWANCTLDIR=\""${swanctldir}\"" \
- -DPLUGINS=\""${s_plugins}\""
- man_MANS = \
- swanctl.8 \
- swanctl.conf.5
- BUILT_SOURCES = swanctl.conf swanctl.conf.5.main
- EXTRA_DIST = swanctl.opt swanctl.conf swanctl.conf.5.main
- CLEANFILES = $(man_MANS)
- .opt.conf:
- $(AM_V_GEN) \
- $(PYTHON) $(top_srcdir)/conf/format-options.py -n -f conf $< > $(srcdir)/$@
- swanctl.conf.5.main: swanctl.opt
- $(AM_V_GEN) \
- cd $(srcdir) && $(PYTHON) $(abs_top_srcdir)/conf/format-options.py -n -f man swanctl.opt > $@
- swanctl.conf.5: swanctl.conf.5.head swanctl.conf.5.main swanctl.conf.5.tail
- $(AM_V_GEN) \
- cat swanctl.conf.5.head $(srcdir)/swanctl.conf.5.main swanctl.conf.5.tail > $@
- maintainer-clean-local:
- cd $(srcdir) && rm -f swanctl.conf swanctl.conf.5.main
- install-data-local: swanctl.conf
- test -e "$(DESTDIR)$(swanctldir)" || $(INSTALL) -d "$(DESTDIR)$(swanctldir)" || true
- test -e "$(DESTDIR)$(swanctldir)/conf.d" || $(INSTALL) -d "$(DESTDIR)$(swanctldir)/conf.d" || true
- test -e "$(DESTDIR)$(swanctldir)/x509" || $(INSTALL) -d "$(DESTDIR)$(swanctldir)/x509" || true
- test -e "$(DESTDIR)$(swanctldir)/x509ca" || $(INSTALL) -d "$(DESTDIR)$(swanctldir)/x509ca" || true
- test -e "$(DESTDIR)$(swanctldir)/x509aa" || $(INSTALL) -d "$(DESTDIR)$(swanctldir)/x509aa" || true
- test -e "$(DESTDIR)$(swanctldir)/x509ocsp" || $(INSTALL) -d "$(DESTDIR)$(swanctldir)/x509ocsp" || true
- test -e "$(DESTDIR)$(swanctldir)/x509crl" || $(INSTALL) -d "$(DESTDIR)$(swanctldir)/x509crl" || true
- test -e "$(DESTDIR)$(swanctldir)/x509ac" || $(INSTALL) -d "$(DESTDIR)$(swanctldir)/x509ac" || true
- test -e "$(DESTDIR)$(swanctldir)/pubkey" || $(INSTALL) -d "$(DESTDIR)$(swanctldir)/pubkey" || true
- test -e "$(DESTDIR)$(swanctldir)/private" || $(INSTALL) -d -m 750 "$(DESTDIR)$(swanctldir)/private" || true
- test -e "$(DESTDIR)$(swanctldir)/rsa" || $(INSTALL) -d -m 750 "$(DESTDIR)$(swanctldir)/rsa" || true
- test -e "$(DESTDIR)$(swanctldir)/ecdsa" || $(INSTALL) -d -m 750 "$(DESTDIR)$(swanctldir)/ecdsa" || true
- test -e "$(DESTDIR)$(swanctldir)/bliss" || $(INSTALL) -d -m 750 "$(DESTDIR)$(swanctldir)/bliss" || true
- test -e "$(DESTDIR)$(swanctldir)/pkcs8" || $(INSTALL) -d -m 750 "$(DESTDIR)$(swanctldir)/pkcs8" || true
- test -e "$(DESTDIR)$(swanctldir)/pkcs12" || $(INSTALL) -d -m 750 "$(DESTDIR)$(swanctldir)/pkcs12" || true
- test -e "$(DESTDIR)$(swanctldir)/swanctl.conf" || $(INSTALL) -m 640 $(srcdir)/swanctl.conf $(DESTDIR)$(swanctldir)/swanctl.conf || true
|