From c3c958098baca5651e7bfd6b68ffda475ce671fa Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Mon, 18 Jul 2016 20:02:49 +0200 Subject: [PATCH] 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. --- Makefile.real | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 -- 2.39.2