Streamline Makefiles + .mo file generation
[gpodder.git] / Makefile
blobc8a41899b5dad76cd7a1eca9a6a2dd97a7c6f09c
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 DESTDIR ?= /
43 PREFIX ?= /usr
45 ##########################################################################
47 all: help
49 help:
50 @echo 'make test run gpodder in local directory'
51 @echo 'make unittest run doctests + unittests'
52 @echo 'make mtest run gpodder (for maemo scratchbox)'
53 @echo 'make release create source tarball in "dist/"'
54 @echo 'make releasetest run some tests before the release'
55 @echo 'make install install gpodder into "$(PREFIX)"'
56 @echo 'make manpage update manpage (on release)'
57 @echo 'make messages update messages.pot + .po files + .mo files'
58 @echo 'make clean remove generated+temp+*.py{c,o} files'
59 @echo 'make distclean do a "make clean" + remove "dist/"'
60 @echo ''
61 @echo 'make install-git-menuitem Add shortcuts to your menu for this git checkout'
62 @echo 'make remove-git-menuitem Remove shortcuts created by "install-git-menuitem"'
64 ##########################################################################
66 test:
67 @# set xterm title to know what this window does ;)
68 @echo -ne '\033]0;gPodder console (make test)\007'
69 $(BINFILE) --verbose
71 unittest:
72 PYTHONPATH=src/ python -m gpodder.unittests
74 mtest:
75 @# in maemo scratchbox, we need this for osso/hildon
76 run-standalone.sh python2.5 $(BINFILE) --maemo --verbose
78 deb:
79 debuild
81 release: distclean
82 python setup.py sdist
84 releasetest: unittest
85 desktop-file-validate data/gpodder.desktop
86 make -C data/po validate
88 install:
89 python setup.py install --root=$(DESTDIR) --prefix=$(PREFIX)
91 ##########################################################################
93 manpage: $(MANPAGE)
95 $(MANPAGE): src/gpodder/__init__.py $(BINFILE)
96 $(HELP2MAN) --name="A Media aggregator and Podcast catcher" -N $(BINFILE) >$(MANPAGE)
98 ##########################################################################
100 messages: $(MESSAGESPOT)
101 make -C data/po
103 data/ui/%.ui.h: $(UIFILES)
104 intltool-extract --quiet --type=gettext/glade $(subst .ui.h,.ui,$@)
106 $(MESSAGESPOT): $(TRANSLATABLE_SOURCE) $(UIFILES_H) $(BINFILE)
107 xgettext -k_:1 -kN_:1,2 -o $(MESSAGESPOT) $(TRANSLATABLE_SOURCE) $(UIFILES_H) $(BINFILE)
109 ##########################################################################
111 install-git-menuitem:
112 doc/dev/install-desktopentry.sh
114 remove-git-menuitem:
115 doc/dev/install-desktopentry.sh --remove
117 gpodder-icon-theme:
118 rm -rf $(GPODDER_ICON_THEME)
119 mkdir -p $(GPODDER_ICON_THEME)
120 python doc/dev/icon-theme/list-icon-names.py >$(GPODDER_ICON_THEME)/names
121 (cd $(GPODDER_ICON_THEME) && \
122 python ../../doc/dev/icon-theme/pack-icons.py && \
123 python ../../doc/dev/icon-theme/create-index.py >index.theme && \
124 rm -f names)
126 ##########################################################################
128 clean:
129 python setup.py clean
130 find src/ -name '*.pyc' -exec rm '{}' \;
131 find src/ -name '*.pyo' -exec rm '{}' \;
132 rm -f MANIFEST PKG-INFO $(UIFILES_H) data/messages.pot~ data/gpodder-??x??.png .coverage
133 rm -rf build
134 make -C data/po clean
136 debclean:
137 fakeroot debian/rules clean
139 distclean: clean
140 rm -rf dist
142 ##########################################################################
144 .PHONY: all test unittest release releasetest install manpage clean distclean messages help install-git-menuitem remove-git-menuitem
146 ##########################################################################