l10n: Updated Polish (pl) translation to 100%
[gpodder.git] / Makefile
blob728db1b0b8862c749a5b8558fdd380280fdf9248
2 # gPodder - A media aggregator and podcast client
3 # Copyright (c) 2005-2010 Thomas Perl and the gPodder Team
5 # gPodder is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # gPodder is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
20 ##########################################################################
22 BINFILE=bin/gpodder
23 MESSAGESPOT=data/messages.pot
25 UIFILES=$(wildcard data/ui/*.ui \
26 data/ui/desktop/*.ui \
27 data/ui/maemo/*.ui \
28 data/ui/frmntl/*.ui)
29 UIFILES_H=$(subst .ui,.ui.h,$(UIFILES))
30 TRANSLATABLE_SOURCE=$(wildcard src/gpodder/*.py \
31 src/gpodder/gtkui/*.py \
32 src/gpodder/gtkui/interface/*.py \
33 src/gpodder/gtkui/desktop/*.py \
34 src/gpodder/gtkui/maemo/*.py \
35 src/gpodder/gtkui/frmntl/*.py)
37 HELP2MAN=help2man
38 MANPAGE=doc/man/gpodder.1
40 GPODDER_ICON_THEME=dist/gpodder
42 GPODDER_SERVICE_FILE=data/org.gpodder.service
43 GPODDER_SERVICE_FILE_IN=$(addsuffix .in,$(GPODDER_SERVICE_FILE))
45 DESTDIR ?= /
46 PREFIX ?= /usr
48 PYTHON ?= python
50 ##########################################################################
52 all: help
54 help:
55 @echo 'make test run gpodder in local directory'
56 @echo 'make unittest run doctests + unittests'
57 @echo 'make release create source tarball in "dist/"'
58 @echo 'make releasetest run some tests before the release'
59 @echo 'make install install gpodder into "$(PREFIX)"'
60 @echo 'make manpage update manpage (on release)'
61 @echo 'make messages update messages.pot + .po files + .mo files'
62 @echo 'make clean remove generated+temp+*.py{c,o} files'
63 @echo 'make distclean do a "make clean" + remove "dist/"'
64 @echo 'make headlink print URL for the current Git head'
65 @echo ''
66 @echo 'make install-git-menuitem Add shortcuts to your menu for this git checkout'
67 @echo 'make remove-git-menuitem Remove shortcuts created by "install-git-menuitem"'
69 ##########################################################################
71 test:
72 @# set xterm title to know what this window does ;)
73 @echo -ne '\033]0;gPodder console (make test)\007'
74 $(BINFILE) --verbose
76 unittest:
77 PYTHONPATH=src/ $(PYTHON) -m gpodder.unittests
79 deb:
80 debuild
82 release: distclean
83 $(PYTHON) setup.py sdist
85 releasetest: unittest
86 desktop-file-validate data/gpodder.desktop
87 make -C data/po validate
89 $(GPODDER_SERVICE_FILE): $(GPODDER_SERVICE_FILE_IN)
90 sed -e 's#__PREFIX__#$(PREFIX)#' $< >$@
92 install: messages $(GPODDER_SERVICE_FILE)
93 $(PYTHON) setup.py install --root=$(DESTDIR) --prefix=$(PREFIX)
95 ##########################################################################
97 manpage: $(MANPAGE)
99 $(MANPAGE): src/gpodder/__init__.py $(BINFILE)
100 $(HELP2MAN) --name="A Media aggregator and Podcast catcher" -N $(BINFILE) >$(MANPAGE)
102 ##########################################################################
104 messages: $(MESSAGESPOT)
105 make -C data/po
107 data/ui/%.ui.h: $(UIFILES)
108 intltool-extract --quiet --type=gettext/glade $(subst .ui.h,.ui,$@)
110 $(MESSAGESPOT): $(TRANSLATABLE_SOURCE) $(UIFILES_H) $(BINFILE)
111 xgettext -k_:1 -kN_:1 -kN_:1,2 -o $(MESSAGESPOT) $(TRANSLATABLE_SOURCE) $(UIFILES_H) $(BINFILE)
113 ##########################################################################
115 install-git-menuitem:
116 doc/dev/install-desktopentry.sh
118 remove-git-menuitem:
119 doc/dev/install-desktopentry.sh --remove
121 gpodder-icon-theme:
122 rm -rf $(GPODDER_ICON_THEME)
123 mkdir -p $(GPODDER_ICON_THEME)
124 $(PYTHON) doc/dev/icon-theme/list-icon-names.py >$(GPODDER_ICON_THEME)/names
125 (cd $(GPODDER_ICON_THEME) && \
126 $(PYTHON) ../../doc/dev/icon-theme/pack-icons.py && \
127 $(PYTHON) ../../doc/dev/icon-theme/create-index.py >index.theme && \
128 rm -f names)
130 ##########################################################################
132 # This only works in a Git working commit, and assumes that the local Git
133 # HEAD has already been pushed to the main repository. It's mainly useful
134 # for the gPodder maintainer to quickly generate a commit link that can be
135 # posted online in bug trackers and mailing lists.
137 headlink:
138 @echo http://gpodder.org/commit/`git show-ref HEAD | head -c8`
140 ##########################################################################
142 clean:
143 $(PYTHON) setup.py clean
144 find src/ -name '*.pyc' -exec rm '{}' \;
145 find src/ -name '*.pyo' -exec rm '{}' \;
146 find data/ui/ -name '*.ui.h' -exec rm '{}' \;
147 rm -f MANIFEST PKG-INFO data/messages.pot~
148 rm -f data/gpodder-??x??.png .coverage $(GPODDER_SERVICE_FILE)
149 rm -rf build
150 make -C data/po clean
152 debclean:
153 fakeroot debian/rules clean
155 distclean: clean
156 rm -rf dist
158 ##########################################################################
160 .PHONY: all test unittest release releasetest install manpage clean distclean messages help install-git-menuitem remove-git-menuitem headlink
162 ##########################################################################