From e87fbefcec0c44579495b1bcb22ac59814029566 Mon Sep 17 00:00:00 2001 From: Stefano Karapetsas Date: Thu, 12 Jan 2012 18:28:35 +0100 Subject: import from Mate-Extra --- Makefile.am | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 Makefile.am (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..9611bc7 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,38 @@ +## Process this file with automake to produce Makefile.in + +SUBDIRS = data po Alacarte + +CLEANFILES= + +bin_SCRIPTS = alacarte +CLEANFILES += alacarte + +DISTCLEANFILES = ChangeLog + +alacarte: alacarte.in + sed -e s!\@PYTHON\@!@PYTHON@! \ + -e s!\@PYOPTIONS\@!-OOt! \ + < $< > $@ +alacarte: Makefile + +EXTRA_DIST = \ + alacarte.in \ + MAINTAINERS \ + ChangeLog.pre-git + +ChangeLog: + @echo Creating $@ + @if test -d "$(srcdir)/.git"; then \ + (GIT_DIR=$(top_srcdir)/.git ./missing --run git log git-migration.. --stat -M -C --name-status --date=short --no-color) | fmt --split-only > $@.tmp \ + && mv -f $@.tmp $@ \ + || ($(RM) $@.tmp; \ + echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \ + (test -f $@ || echo git-log is required to generate this file >> $@)); \ + else \ + test -f $@ || \ + (echo A git checkout and git-log is required to generate ChangeLog >&2 && \ + echo A git checkout and git-log is required to generate this file >> $@); \ + fi + +.PHONY: ChangeLog + -- cgit v1.2.1