]> git.ipfire.org Git - oddments/ddns.git/blame - Makefile.am
Catch SSL errors
[oddments/ddns.git] / Makefile.am
CommitLineData
3fdcb9d1
MT
1###############################################################################
2# #
dc11f1ea
MT
3# Pakfire - The IPFire package management system #
4# Copyright (C) 2013 Pakfire development team #
3fdcb9d1
MT
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###############################################################################
f22ab085 20
dc11f1ea
MT
21ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
22AM_MAKEFLAGS = --no-print-directory
23AUTOMAKE_OPTIONS = color-tests
f22ab085 24
dc11f1ea
MT
25# remove target it the command fails
26.DELETE_ON_ERROR:
f22ab085 27
dc11f1ea
MT
28# keep itermediate files
29.SECONDARY:
f22ab085 30
dc11f1ea 31SUBDIRS = . po
f22ab085 32
dc11f1ea 33pythondir = $(pyexecdir)
f22ab085 34
dc11f1ea 35configsdir = $(sysconfdir)/ddns
f22ab085 36
dc11f1ea
MT
37CLEANFILES =
38DISTCLEANFILES =
39EXTRA_DIST =
673f2c74 40INSTALL_DIRS =
2443dd94 41noinst_DATA =
f22ab085 42
dc11f1ea 43@INTLTOOL_POLICY_RULE@
f22ab085 44
dc11f1ea
MT
45.PHONY: update-po
46update-po:
47 $(MAKE) -C po update-po
f22ab085 48
673f2c74
SS
49DISTCHECK_CONFIGURE_FLAGS = \
50 --with-systemdsystemunitdir=$$dc_install_base/$(systemdsystemunitdir)
51
dc11f1ea 52# ------------------------------------------------------------------------------
f22ab085 53
2443dd94
SS
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
dc11f1ea
MT
60dist_doc_DATA = \
61 COPYING
62
63# ------------------------------------------------------------------------------
64
0b5e00a2
MT
65bin_SCRIPTS = \
66 ddns
67
68EXTRA_DIST += \
69 ddns.in
70
71CLEANFILES += \
dc11f1ea
MT
72 ddns
73
74dist_configs_DATA = \
677765c0 75 ddns.conf.sample
dc11f1ea
MT
76
77ddns_PYTHON = \
78 src/ddns/__init__.py \
79 src/ddns/__version__.py \
37e24fbf 80 src/ddns/database.py \
dc11f1ea
MT
81 src/ddns/errors.py \
82 src/ddns/i18n.py \
83 src/ddns/providers.py \
84 src/ddns/system.py
85
86ddnsdir = $(pythondir)/ddns
0b5e00a2
MT
87
88# ------------------------------------------------------------------------------
89
2443dd94
SS
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
673f2c74
SS
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
0b5e00a2
MT
160substitutions = \
161 '|PACKAGE_NAME=$(PACKAGE_NAME)|' \
162 '|PACKAGE_VERSION=$(PACKAGE_VERSION)|' \
673f2c74
SS
163 '|configsdir=$(configsdir)|' \
164 '|bindir=$(bindir)|'
0b5e00a2
MT
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)
673f2c74
SS
173
174src/systemd/%: src/systemd/%.in Makefile
175 $(SED_PROCESS)