Update Polish translation
[alacarte.git] / Makefile.am
blob6d987a2d3b9aff100947001348be43f3757a7976
1 ## Process this file with automake to produce Makefile.in
3 SUBDIRS = data po Alacarte
5 if BUILD_DOCUMENTATION
6 SUBDIRS += man
7 endif
9 CLEANFILES=
11 bin_SCRIPTS = alacarte
12 CLEANFILES += alacarte
14 DISTCLEANFILES = ChangeLog
16 alacarte: alacarte.in
17         $(AM_V_GEN)sed -e s!\@PYTHON\@!@PYTHON@!        \
18             -e s!\@PYOPTIONS\@!-OOt!                    \
19             < $< > $@
20 alacarte: Makefile
22 EXTRA_DIST = \
23         alacarte.in \
24         MAINTAINERS \
25         ChangeLog.pre-git
27 ChangeLog:
28         @echo Creating $@
29         @if test -d "$(srcdir)/.git"; then \
30           (GIT_DIR=$(top_srcdir)/.git ./missing --run git log git-migration.. --stat -M -C --name-status  --date=short --no-color) | fmt --split-only > $@.tmp \
31           && mv -f $@.tmp $@ \
32           || ($(RM) $@.tmp; \
33               echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \
34               (test -f $@ || echo git-log is required to generate this file >> $@)); \
35         else \
36           test -f $@ || \
37           (echo A git checkout and git-log is required to generate ChangeLog >&2 && \
38            echo A git checkout and git-log is required to generate this file >> $@); \
39         fi
41 .PHONY: ChangeLog
42