]> git.ipfire.org Git - ddns.git/blame - Makefile.am
LWL: Fix typos in class name.
[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 =
f22ab085 40
dc11f1ea 41@INTLTOOL_POLICY_RULE@
f22ab085 42
dc11f1ea
MT
43.PHONY: update-po
44update-po:
45 $(MAKE) -C po update-po
f22ab085 46
dc11f1ea 47# ------------------------------------------------------------------------------
f22ab085 48
dc11f1ea
MT
49dist_doc_DATA = \
50 COPYING
51
52# ------------------------------------------------------------------------------
53
54dist_bin_SCRIPTS = \
55 ddns
56
57dist_configs_DATA = \
58 ddns.conf
59
60ddns_PYTHON = \
61 src/ddns/__init__.py \
62 src/ddns/__version__.py \
63 src/ddns/errors.py \
64 src/ddns/i18n.py \
65 src/ddns/providers.py \
66 src/ddns/system.py
67
68ddnsdir = $(pythondir)/ddns