Makefile.in: add a dist-bzip2 target

This commit is contained in:
Benjamin Dauvergne 2015-04-07 15:46:46 +02:00
parent c0f8c431da
commit 06c1857ba1
1 changed files with 5 additions and 0 deletions

View File

@ -51,6 +51,8 @@ configure: configure.ac
@NAMEVER@.tar.gz: $(DISTFILES)
tar -c --transform="s#^#@NAMEVER@/#" -vzf $@ $(DISTFILES)
@NAMEVER@.tar.bz2: $(DISTFILES)
tar -c --transform="s#^#@NAMEVER@/#" -vjf $@ $(DISTFILES)
.PHONY: install
install: mod_auth_mellon.la
@ -77,3 +79,6 @@ distclean: clean
.PHONY: fullclean
fullclean: distclean
rm -f configure aclocal.m4
.PHONY: dist-bzip2
dist-bzip2: @NAMEVER@.tar.bz2