gitg/Makefile.am

94 lines
2 KiB
Makefile
Raw Normal View History

2008-06-23 22:04:20 +00:00
## Process this file with automake to produce Makefile.in
2013-02-14 10:29:00 +00:00
ACLOCAL_AMFLAGS = -I m4 -I libgd ${ACLOCAL_FLAGS}
2011-02-26 14:39:41 +00:00
2013-06-23 12:40:04 +00:00
SUBDIRS = libgd libgitg libgitg-ext plugins gitg data po tests
2008-06-23 22:04:20 +00:00
DISTCLEANFILES = \
intltool-extract \
intltool-merge \
intltool-update
EXTRA_DIST = \
autogen.sh \
MAINTAINERS
2010-01-17 15:11:59 +00:00
MAINTAINERCLEANFILES = \
INSTALL \
configure \
build-aux/* \
intltool-extract.in \
intltool-merge.in \
intltool-update.in \
2010-01-17 15:11:59 +00:00
aclocal.m4 \
config.guess \
config.h.in \
config.sub \
depcomp \
2010-10-23 13:13:12 +00:00
ABOUT-NLS \
config.rpath \
2010-01-17 15:11:59 +00:00
install-sh \
ltmain.sh \
omf.make \
xmldocs.make \
2010-01-17 15:11:59 +00:00
missing \
mkinstalldirs \
2010-10-23 13:13:12 +00:00
m4/codeset.m4 \
m4/gettext.m4 \
m4/glibc21.m4 \
m4/glibc2.m4 \
m4/iconv.m4 \
m4/intdiv0.m4 \
m4/intldir.m4 \
m4/intl.m4 \
m4/intlmacosx.m4 \
m4/intltool.m4 \
m4/intmax.m4 \
m4/inttypes_h.m4 \
m4/inttypes-pri.m4 \
m4/lcmessage.m4 \
m4/lib-ld.m4 \
m4/lib-link.m4 \
m4/lib-prefix.m4 \
m4/libtool.m4 \
m4/lock.m4 \
m4/longlong.m4 \
m4/lt~obsolete.m4 \
m4/ltoptions.m4 \
m4/ltsugar.m4 \
m4/ltversion.m4 \
m4/nls.m4 \
m4/po.m4 \
m4/printf-posix.m4 \
m4/progtest.m4 \
m4/size_max.m4 \
m4/stdint_h.m4 \
m4/uintmax_t.m4 \
m4/visibility.m4 \
m4/wchar_t.m4 \
m4/wint_t.m4 \
m4/xsize.m4 \
po/*.sin \
po/*.sed \
po/*.header \
po/missing \
po/Rules-quot \
po/Makevars.template \
2010-01-17 15:11:59 +00:00
`find "$(srcdir)" -type f -name Makefile.in -print`
dist-hook: generate-changelog
generate-changelog:
if test -d $(top_srcdir)/.git; then \
2009-03-01 08:59:23 +00:00
sep=`nawk 'BEGIN{$$79=OFS="-";print}'`; \
git --git-dir=$(top_srcdir)/.git log --date=short --stat --decorate \
| sed -e "s/^\(commit [abcdef0-9]\{40\}\) (.*refs\/tags\/\(v\([0-9.]\+\)\).*)/$$sep\nVersion \3\n$$sep\n\n\1/g" -e 's/^\(commit [abcdef0-9]\{40\}\).*/\1/g' | ruby -e 'puts STDIN.read.gsub(/commit\s*(.*)\nAuthor:\s*(.*)\nDate:\s*(.*)\n/, "\\3 \\2\ncommit \\1\n")' > $(distdir)/c-l; \
mv $(distdir)/c-l $(distdir)/ChangeLog; \
fi
2010-05-30 21:37:21 +00:00
.PHONY: generate-changelog
2009-09-06 19:33:23 +00:00
-include $(top_srcdir)/git.mk
2013-03-01 22:58:45 +00:00
.NOTPARALLEL: