]> git.ipfire.org Git - oddments/ddns.git/blame_incremental - Makefile.am
Add support for systemd.
[oddments/ddns.git] / Makefile.am
... / ...
CommitLineData
1###############################################################################
2# #
3# Pakfire - The IPFire package management system #
4# Copyright (C) 2013 Pakfire development team #
5# #
6# This program is free software: you can redistribute it and/or modify #
7# it under the terms of the GNU General Public License as published by #
8# the Free Software Foundation, either version 3 of the License, or #
9# (at your option) any later version. #
10# #
11# This program is distributed in the hope that it will be useful, #
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
18# #
19###############################################################################
20
21ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
22AM_MAKEFLAGS = --no-print-directory
23AUTOMAKE_OPTIONS = color-tests
24
25# remove target it the command fails
26.DELETE_ON_ERROR:
27
28# keep itermediate files
29.SECONDARY:
30
31SUBDIRS = . po
32
33pythondir = $(pyexecdir)
34
35configsdir = $(sysconfdir)/ddns
36
37CLEANFILES =
38DISTCLEANFILES =
39EXTRA_DIST =
40INSTALL_DIRS =
41noinst_DATA =
42
43@INTLTOOL_POLICY_RULE@
44
45.PHONY: update-po
46update-po:
47 $(MAKE) -C po update-po
48
49DISTCHECK_CONFIGURE_FLAGS = \
50 --with-systemdsystemunitdir=$$dc_install_base/$(systemdsystemunitdir)
51
52# ------------------------------------------------------------------------------
53
54AM_V_XSLT = $(AM_V_XSLT_$(V))
55AM_V_XSLT_ = $(AM_V_XSLT_$(AM_DEFAULT_VERBOSITY))
56AM_V_XSLT_0 = @echo " XSLT " $@;
57
58# ------------------------------------------------------------------------------
59
60dist_doc_DATA = \
61 COPYING
62
63# ------------------------------------------------------------------------------
64
65bin_SCRIPTS = \
66 ddns
67
68EXTRA_DIST += \
69 ddns.in
70
71CLEANFILES += \
72 ddns
73
74dist_configs_DATA = \
75 ddns.conf.sample
76
77ddns_PYTHON = \
78 src/ddns/__init__.py \
79 src/ddns/__version__.py \
80 src/ddns/database.py \
81 src/ddns/errors.py \
82 src/ddns/i18n.py \
83 src/ddns/providers.py \
84 src/ddns/system.py
85
86ddnsdir = $(pythondir)/ddns
87
88# ------------------------------------------------------------------------------
89
90if ENABLE_MANPAGES
91MANPAGES = \
92 man/ddns.1 \
93 man/ddns.conf.5
94
95MANPAGES_XML = $(patsubst %.1,%.xml,$(patsubst %.5,%.xml,$(MANPAGES)))
96MANPAGES_HTML = $(patsubst %.xml,%.html,$(MANPAGES_XML))
97
98man: $(MANPAGES) $(MANPAGES_HTML)
99
100man_MANS = \
101 $(MANPAGES)
102
103noinst_DATA += \
104 $(MANPAGES_HTML)
105
106CLEANFILES += \
107 $(man_MANS) \
108 $(MANPAGES_HTML)
109
110EXTRA_DIST += \
111 $(MANPAGES_XML) \
112 man/custom-html.xsl
113
114XSLTPROC_FLAGS = \
115 --nonet \
116 --stringparam man.output.quietly 1 \
117 --stringparam funcsynopsis.style ansi \
118 --stringparam man.th.extra1.suppress 1 \
119 --stringparam man.authors.section.enabled 1 \
120 --stringparam man.copyright.section.enabled 1
121
122XSLTPROC_COMMAND_MAN = \
123 $(AM_V_XSLT)$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) \
124 http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
125
126XSLTPROC_COMMAND_HTML = \
127 $(AM_V_XSLT)$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) $(srcdir)/man/custom-html.xsl $<
128
129man/%.1: man/%.xml
130 $(XSLTPROC_COMMAND_MAN)
131
132man/%.5: man/%.xml
133 $(XSLTPROC_COMMAND_MAN)
134
135man/%.html: man/%.xml man/custom-html.xsl
136 $(XSLTPROC_COMMAND_HTML)
137
138endif
139
140# ------------------------------------------------------------------------------
141
142if HAVE_SYSTEMD
143systemdsystemunit_DATA = \
144 src/systemd/ddns.service \
145 src/systemd/ddns.timer
146
147CLEANFILES += \
148 $(systemdsystemunit_DATA)
149
150INSTALL_DIRS += \
151 $(systemdsystemunitdir)
152endif
153
154EXTRA_DIST += \
155 src/systemd/ddns.service.in \
156 src/systemd/ddns.timer
157
158# ------------------------------------------------------------------------------
159
160substitutions = \
161 '|PACKAGE_NAME=$(PACKAGE_NAME)|' \
162 '|PACKAGE_VERSION=$(PACKAGE_VERSION)|' \
163 '|configsdir=$(configsdir)|' \
164 '|bindir=$(bindir)|'
165
166SED_PROCESS = \
167 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
168 $(SED) $(subst '|,-e 's|@,$(subst =,\@|,$(subst |',|g',$(substitutions)))) \
169 < $< > $@
170
171ddns: ddns.in Makefile
172 $(SED_PROCESS)
173
174src/systemd/%: src/systemd/%.in Makefile
175 $(SED_PROCESS)