summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 9 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 59f8986..893396b 100644
--- a/Makefile
+++ b/Makefile
@@ -1,16 +1,21 @@
PACKAGE = mageiawelcome
-VERSION = 1.18mga6
+VERSION = 1.96mga6
GITPATH = git://git.mageia.org/software/mageiawelcome
TEXT_FILES = Makefile
DIRS = etc usr po qml i18n
-FILES = $(TEXT_FILES) $(DIRS) LICENSE *.pro
+FILES = $(TEXT_FILES) $(DIRS) LICENSE *.pro setup.py
check:
/usr/bin/python3 -m pyflakes qml/*.py
-
+
+version:
+ echo "version='$(VERSION)'" > version.py
+ echo "import QtQuick 2.0" >qml/Version.qml
+ echo "Item { property var version: '$(VERSION)';}" >>qml/Version.qml
+
clean:
rm -f *~ \#*\#
@@ -30,4 +35,4 @@ tar: localcopy
tar cvYf $(PACKAGE)-$(VERSION).tar.xz $(PACKAGE)-$(VERSION)
rm -fr $(PACKAGE)-$(VERSION)
-dist: cleandist dir localcopy tar
+dist: cleandist version dir localcopy tar