diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..839053f --- /dev/null +++ b/Makefile @@ -0,0 +1,21 @@ +PACKAGE = mageia-kde4-config +PKGVERSION = $(VERSION) +VERSION = 1 + +.PHONY: all $(DIRS) clean + +clean: + # TODO + + + +# rules to build tarball +localcopy: clean + rm -rf $(PACKAGE)-$(PKGVERSION)* + svn export -q -rBASE . $(PACKAGE)-$(PKGVERSION) + +localdist: tar + +tar: localcopy + tar cfa $(PACKAGE)-$(PKGVERSION).tar.lzma $(PACKAGE)-$(PKGVERSION) + rm -rf $(PACKAGE)-$(PKGVERSION) |