From 06c1857ba11ae7b257694837103162459ef802a8 Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Tue, 7 Apr 2015 15:46:46 +0200 Subject: [PATCH] Makefile.in: add a dist-bzip2 target --- Makefile.in | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile.in b/Makefile.in index fe0bb74..12c50f9 100644 --- a/Makefile.in +++ b/Makefile.in @@ -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