|
@@ -5,14 +5,16 @@ SUBDIRS = . tests
|
|
|
# If the default location needs to be changed it may be achieved by
|
|
|
# setting KEACTRL_CONF environment variable.
|
|
|
sbin_SCRIPTS = keactrl
|
|
|
-KEA_CONFIGFILES = kea-dhcp4.conf kea-dhcp6.conf kea-dhcp-ddns.conf kea-ctrl-agent.conf
|
|
|
+KEA_CONFIGFILES = kea-dhcp4.conf kea-dhcp6.conf kea-dhcp-ddns.conf \
|
|
|
+ kea-ctrl-agent.conf
|
|
|
CONFIGFILES = keactrl.conf $(KEA_CONFIGFILES)
|
|
|
|
|
|
man_MANS = keactrl.8
|
|
|
DISTCLEANFILES = keactrl keactrl.conf $(man_MANS)
|
|
|
CLEANFILES = $(KEA_CONFIGFILES)
|
|
|
-EXTRA_DIST = keactrl.in keactrl.conf.in kea-dhcp4.conf.pre kea-dhcp6.conf.pre \
|
|
|
- kea-dhcp-ddns.conf.pre kea-ctrl-agent.conf.pre $(man_MANS) keactrl.xml
|
|
|
+EXTRA_DIST = keactrl.in keactrl.conf.in kea-dhcp4.conf.pre \
|
|
|
+ kea-dhcp6.conf.pre kea-dhcp-ddns.conf.pre \
|
|
|
+ kea-ctrl-agent.conf.pre $(man_MANS) keactrl.xml
|
|
|
|
|
|
# *.conf files are not really sources used for building other targets, but we need
|
|
|
# these files to be generated before make install is called.
|
|
@@ -21,7 +23,8 @@ BUILT_SOURCES = $(KEA_CONFIGFILES)
|
|
|
if GENERATE_DOCS
|
|
|
|
|
|
keactrl.8: keactrl.xml
|
|
|
- @XSLTPROC@ --novalid --xinclude --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $(srcdir)/keactrl.xml
|
|
|
+ @XSLTPROC@ --novalid --xinclude --nonet -o $@ \
|
|
|
+ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $(srcdir)/keactrl.xml
|
|
|
|
|
|
else
|
|
|
|
|
@@ -32,16 +35,20 @@ $(man_MANS):
|
|
|
endif
|
|
|
|
|
|
kea-dhcp4.conf: kea-dhcp4.conf.pre
|
|
|
- $(top_builddir)/tools/path_replacer.sh $(top_srcdir)/src/bin/keactrl/kea-dhcp4.conf.pre $@
|
|
|
+ $(top_builddir)/tools/path_replacer.sh \
|
|
|
+ $(top_srcdir)/src/bin/keactrl/kea-dhcp4.conf.pre $@
|
|
|
|
|
|
kea-dhcp6.conf: kea-dhcp6.conf.pre
|
|
|
- $(top_builddir)/tools/path_replacer.sh $(top_srcdir)/src/bin/keactrl/kea-dhcp6.conf.pre $@
|
|
|
+ $(top_builddir)/tools/path_replacer.sh \
|
|
|
+ $(top_srcdir)/src/bin/keactrl/kea-dhcp6.conf.pre $@
|
|
|
|
|
|
kea-dhcp-ddns.conf: kea-dhcp-ddns.conf.pre
|
|
|
- $(top_builddir)/tools/path_replacer.sh $(top_srcdir)/src/bin/keactrl/kea-dhcp-ddns.conf.pre $@
|
|
|
+ $(top_builddir)/tools/path_replacer.sh \
|
|
|
+ $(top_srcdir)/src/bin/keactrl/kea-dhcp-ddns.conf.pre $@
|
|
|
|
|
|
kea-ctrl-agent.conf: kea-ctrl-agent.conf.pre
|
|
|
- $(top_builddir)/tools/path_replacer.sh $(top_srcdir)/src/bin/keactrl/kea-ctrl-agent.conf.pre $@
|
|
|
+ $(top_builddir)/tools/path_replacer.sh \
|
|
|
+ $(top_srcdir)/src/bin/keactrl/kea-ctrl-agent.conf.pre $@
|
|
|
|
|
|
if INSTALL_CONFIGURATIONS
|
|
|
|