summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorDexter Morgan <dmorgan@mageia.org>2011-02-09 14:12:24 +0000
committerDexter Morgan <dmorgan@mageia.org>2011-02-09 14:12:24 +0000
commit2c49af3a4fceee0a8b0911844b77284002749eba (patch)
treee1d1135d9e7807b70414b3251db703b7dc36d1b6 /Makefile
parenta02ddd6427dce932ed0ed62eefe674f5253bcf2c (diff)
downloadconfig-2c49af3a4fceee0a8b0911844b77284002749eba.tar
config-2c49af3a4fceee0a8b0911844b77284002749eba.tar.gz
config-2c49af3a4fceee0a8b0911844b77284002749eba.tar.bz2
config-2c49af3a4fceee0a8b0911844b77284002749eba.tar.xz
config-2c49af3a4fceee0a8b0911844b77284002749eba.zip
Commit first version of MakeFile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile21
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)