From b6b44e16d57d05f9a400a3e1e33ed49f4beef20b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C3=A9cureuil?= Date: Sat, 28 Nov 2015 14:43:12 +0100 Subject: Add Makefile to generate the tarball --- Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..76c4893 --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +PACKAGE = mgarepo +PKGVERSION = $(VERSION) +VERSION = 1.11.0 +.PHONY: all $(DIRS) clean + +clean: + # TODO + + + +# rules to build tarball + +tar: + git archive --prefix $(PACKAGE)-$(PKGVERSION)/ HEAD | xz -9 > $(PACKAGE)-$(PKGVERSION).tar.xz -- cgit v1.2.1