forked from kimchi-project/ginger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
109 lines (83 loc) · 2.6 KB
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
#
# Ginger
#
# Copyright IBM Corp, 2014
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
SUBDIRS= po controls models ui contrib tests
ACLOCAL_AMFLAGS = --install -I m4
PEP8_WHITELIST = \
controls \
models \
tests\
$(NULL)
ginger_PYTHON = \
__init__.py \
ginger.py \
i18n.py \
$(NULL)
gingerdir = $(pythondir)/wok/plugins/ginger
confdir = $(sysconfdir)/wok/plugins.d
dist_conf_DATA = ginger.conf
EXTRA_DIST = \
API.json \
VERSION \
autogen.sh \
build-aux/config.rpath \
build-aux/pkg-version \
$(NULL)
CLEANFILES = \
$(ginger_PYTHON:%.py=%.pyc) \
$(NULL)
check-local:
find . -path './.git' -prune -type f -o \
-name '*.py' -o -name '*.py.in' | xargs $(PYFLAKES) | \
while read LINE; do echo "$$LINE"; false; done
$(PEP8) --version
$(PEP8) --filename '*.py,*.py.in' $(PEP8_WHITELIST)
#
# Packaging helpers
#
install-deb: install
cp -R $(top_srcdir)/contrib/DEBIAN $(DESTDIR)/
deb: contrib/make-deb.sh
$(top_srcdir)/contrib/make-deb.sh
# Link built mo files in the source tree to enable use of translations from
# within the source tree
all-local:
while read L && test -n "$$L"; do \
dir=mo/$$L/LC_MESSAGES ; \
$(MKDIR_P) $$dir ; \
ln -sf ../../../po/$$L.gmo $$dir/ginger.mo ; \
done < po/LINGUAS
install-data-local:
$(MKDIR_P) $(DESTDIR)$(gingerdir)
$(INSTALL_DATA) API.json $(DESTDIR)$(gingerdir)/API.json
rpm: dist ginger.spec
$(MKDIR_P) rpm/BUILD rpm/RPMS rpm/SOURCES rpm/SPECS rpm/SRPMS
cp $(top_srcdir)/ginger.spec rpm/SPECS/ginger.spec
cp $(DIST_ARCHIVES) rpm/SOURCES
rpmbuild -ba --define "_topdir `pwd`/rpm" rpm/SPECS/ginger.spec
ChangeLog:
@if test -d .git; then \
$(top_srcdir)/build-aux/genChangelog --release > $@; \
fi
VERSION:
@if test -d .git; then \
git describe --abbrev=0 > $@; \
fi
clean-local:
rm -rf rpm
.PHONY: rpm ChangeLog VERSION