diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..2526448 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +PACKAGE = mageia-plasma5-config +PKGVERSION = $(VERSION) +VERSION = 5 +DATE = `date +%Y%m%d` +.PHONY: all $(DIRS) clean + +clean: + # TODO + + + +# rules to build tarball + +tar: + git archive --prefix $(PACKAGE)-$(PKGVERSION)/ HEAD | xz -9 > $(PACKAGE)-$(PKGVERSION).$(DATE).tar.xz |