ObjFW  Makefile at [4a1b21645d]

File Makefile artifact 08c4fede3e part of check-in 4a1b21645d


include extra.mk

SUBDIRS = src utils ${TESTS}
DISTCLEAN = aclocal.m4		\
	    autom4te.cache	\
	    buildsys.mk		\
	    config.h		\
	    config.log		\
	    config.status	\
	    extra.mk

include buildsys.mk

tarball:
	V=$$(fgrep VERSION= utils/objfw-config.in | \
	      sed 's/VERSION="\(.*\)"/\1/'); \
	V2=$$(fgrep AC_INIT configure.ac | \
	      sed 's/AC_INIT([^,]*,\([^,]*\),.*/\1/' | sed 's/ //'); \
	V3=$$(fgrep -A1 CFBundleVersion Info.plist | tail -1 | \
	      sed 's/.*>\(.*\)<.*/\1/'); \
	V4=$$(fgrep -A1 CFBundleShortVersion Info.plist | tail -1 | \
	      sed 's/.*>\(.*\)<.*/\1/'); \
	if test x"$$V2" != x"$$V" \
	    -o x"$$V3" != x"$$V" \
	    -o x"$$V4" != x"$$V4"; then \
		echo "Not all files have the same version number!"; \
		echo "Files: util/objfw-config.in configure.ac Info.plist"; \
		exit 1; \
	fi; \
	echo "Generating tarball for version $$V..."; \
	rm -fr objfw-$$V objfw-$$V.tar objfw-$$V.tar.gz; \
	git archive HEAD --prefix objfw-$$V/ -o objfw-$$V.tar && \
	tar xf objfw-$$V.tar && \
	rm -f objfw-$$V.tar objfw-$$V/.gitignore && \
	cp configure config.h.in objfw-$$V/ && \
	tar cf objfw-$$V.tar objfw-$$V && \
	gzip -9 objfw-$$V.tar; \
	rm -fr objfw-$$V objfw-$$V.tar