zzuf/Makefile.am
Sam Hocevar 58bac4bfc4 Drop Visual Studio 2008 support and require the 2010 version. The
2010 express version is free to use and it's a lot better.
2010-09-22 22:42:04 +00:00

24 lines
758 B
Makefile

SUBDIRS = src test doc
DIST_SUBDIRS = $(SUBDIRS)
EXTRA_DIST = bootstrap build-osx build-win32 AUTHORS \
m4/cflags.m4 m4/func.m4 \
msvc/config.h \
msvc/libzzuf.vcxproj \
msvc/zzat.vcxproj \
msvc/zznop.vcxproj \
msvc/zzuf.vcxproj \
msvc/zzuf.sln
ACLOCAL_AMFLAGS = -I m4
AUTOMAKE_OPTIONS = foreign dist-bzip2
update-changelog: FORCE
git --help >/dev/null 2>&1 \
&& test -d .git \
&& git log --stat | awk 'function flush() { if (m != "") { print "Commit: " v "\nAuthor: " a m } m=""; v="UNSUBMITTED" } { if ($$1 == "commit") flush(); else if ($$1 == "Author:") { a = $$2 } else if ($$1 == "git-svn-id:") { split($$2,tmp,"@"); v=tmp[2] } else if ($$_ != " ") { m=m "\n" $$_ } } END { flush() }' > ChangeLog
echo-dirs: ; echo src test
FORCE: