From f449f278dd3c70e479a035f50a9bb817a9b433ba Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 17:24:08 +0200 Subject: Adding upstream version 3.2.6. Signed-off-by: Daniel Baumann --- samples/Makefile.am | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 samples/Makefile.am (limited to 'samples/Makefile.am') diff --git a/samples/Makefile.am b/samples/Makefile.am new file mode 100644 index 0000000..c253c91 --- /dev/null +++ b/samples/Makefile.am @@ -0,0 +1,34 @@ +edit = sed \ + -e 's|@version[@]|$(PACKAGE_VERSION)|g' \ + -e 's|@package[@]|$(PACKAGE_NAME)|g' \ + -e 's|@localstatedir[@]|$(localstatedir)|g' \ + -e 's|@prefix[@]|$(prefix)|g' \ + -e 's|@sysconfdir[@]|$(sysconfdir)|g' \ + -e 's|@config_dir[@]|$(config_dir)|g' \ + -e 's|@storage_dir[@]|$(storage_dir)|g' \ + -e 's|@run_dir[@]|$(run_dir)|g' + +knot.sample.conf: knot.sample.conf.in + rm -f $@ $@.tmp + srcdir=''; \ + test -f ./$@.in || srcdir=$(srcdir)/; \ + $(edit) $${srcdir}$@.in >$@.tmp + mv $@.tmp $@ + +EXTRA_DIST = knot.sample.conf.in example.com.zone + +if HAVE_DAEMON + +install-data-local: knot.sample.conf + if [ \! -f $(DESTDIR)/$(config_dir)/knot.sample.conf ]; then \ + $(INSTALL) -d $(DESTDIR)/$(config_dir); \ + $(INSTALL_DATA) knot.sample.conf $(srcdir)/example.com.zone $(DESTDIR)/$(config_dir); \ + fi +uninstall-local: + -rm -rf $(DESTDIR)/$(config_dir)/knot.sample.conf \ + $(DESTDIR)/$(config_dir)/example.com.zone + +endif # HAVE_DAEMON + +clean-local: + rm -f knot.sample.conf -- cgit v1.2.3