From: Andre Noll Date: Mon, 18 Jul 2016 18:02:49 +0000 (+0200) Subject: build: Rename target "tarball" to "dist". X-Git-Tag: v0.6.0~9^2~1 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=c3c958098baca5651e7bfd6b68ffda475ce671fa;ds=sidebyside build: Rename target "tarball" to "dist". This is the name suggested in the make manual. We keep "tarball" target for a while though to not break existing scripts. --- diff --git a/Makefile.real b/Makefile.real index ef4b51c4..8a3d7acc 100644 --- a/Makefile.real +++ b/Makefile.real @@ -64,9 +64,9 @@ tarball := $(tarball_pfx).tar.bz2 all: $(prefixed_executables) $(man_pages) .PHONY: all mostlyclean clean distclean maintainer-clean install \ - install-strip man tarball + install-strip man dist tarball + man: $(man_pages) -tarball: $(tarball) include $(m4_ggo_dir)/makefile include $(test_dir)/makefile.test @@ -366,7 +366,7 @@ install install-strip: all man $(INSTALL_DATA) $(man_pages) $(DESTDIR)$(mandir) $(MKDIR_P) $(DESTDIR)$(vardir) >/dev/null 2>&1 || true # not fatal, so don't complain -$(tarball): +$(tarball) dist tarball: $(Q) rm -rf $(tarball) $(tarball_pfx) $(Q) git archive --format=tar --prefix=$(tarball_pfx)/ HEAD \ | tar --delete $(tarball_delete) > $(tarball_pfx).tar