summaryrefslogtreecommitdiffstats
path: root/SOURCE/Makefile
diff options
context:
space:
mode:
authorJoerg Koenig <Joerg.Koenig@techsat.com>2019-05-11 20:13:43 (GMT)
committerJoerg Koenig <Joerg.Koenig@techsat.com>2019-05-11 20:13:43 (GMT)
commit66ad746c9bb216e9022c7f3d311829799a7243c1 (patch)
treeac4b669bf16b586bc35e36fb1a03c430402588fa /SOURCE/Makefile
parenta03664703b04cf1a777e4d5305efc6aa682fea12 (diff)
downloadQt-66ad746c9bb216e9022c7f3d311829799a7243c1.zip
Qt-66ad746c9bb216e9022c7f3d311829799a7243c1.tar.gz
Qt-66ad746c9bb216e9022c7f3d311829799a7243c1.tar.bz2
New Build env
Change-Id: Id076bd08344bbcf3831dc8cc3d07cf1a69fa4c9f
Diffstat (limited to 'SOURCE/Makefile')
-rw-r--r--SOURCE/Makefile29
1 files changed, 13 insertions, 16 deletions
diff --git a/SOURCE/Makefile b/SOURCE/Makefile
index 9a8c507..03be040 100644
--- a/SOURCE/Makefile
+++ b/SOURCE/Makefile
@@ -1,24 +1,21 @@
CWD = $(shell readlink -f .)
-VERSION_SHORT = 5.9
-VERSION = $(VERSION_SHORT).1
+VERSION_SHORT = 5.12
+RELEASE = 3
+VERSION = $(VERSION_SHORT).$(RELEASE)
+QT_SOURCE_ARCHIVE=qt-everywhere-src-$(VERSION).tar.xz
+DL_URL="https://download.qt.io/official_releases/qt/$(VERSION_SHORT)/$(VERSION)/single/$(QT_SOURCE_ARCHIVE)"
-SOURCES = \
- $(CWD)/qt-everywhere-opensource-src-$(VERSION).tar.xz \
- $(CWD)/qt-opensource-windows-x86-msvc2015_64-$(VERSION).exe \
- $(CWD)/qt-opensource-windows-x86-msvc2015-$(VERSION).exe
+SSL_VERSION=1.0.2r
+SSL_ARCHIVE=openssl-$(SSL_VERSION).tar.gz
+SSL_DL_URL = "https://www.openssl.org/source/$(SSL_ARCHIVE)"
-all: $(SOURCES)
+all: $(SSL_ARCHIVE) $(QT_SOURCE_ARCHIVE)
-$(CWD)/qt-everywhere-opensource-src-$(VERSION).tar.xz:
- wget -c "https://download.qt.io/archive/qt/$(VERSION_SHORT)/$(VERSION)/single/qt-everywhere-opensource-src-$(VERSION).tar.xz" -O \
- qt-everywhere-opensource-src-$(VERSION).tar.xz
+$(QT_SOURCE_ARCHIVE):
+ wget -c $(DL_URL) -O $(QT_SOURCE_ARCHIVE)
-$(CWD)/qt-opensource-windows-x86-msvc2015_64-$(VERSION).exe:
- wget -c "https://download.qt.io/archive/qt/$(VERSION_SHORT)/$(VERSION)/qt-opensource-windows-x86-msvc2015_64-$(VERSION).exe" -O \
- qt-opensource-windows-x86-msvc2015_64-$(VERSION).exe
+$(SSL_ARCHIVE):
+ wget -c $(SSL_DL_URL) -O $(SSL_ARCHIVE)
-$(CWD)/qt-opensource-windows-x86-msvc2015-$(VERSION).exe:
- wget -c "https://download.qt.io/archive/qt/$(VERSION_SHORT)/$(VERSION)/qt-opensource-windows-x86-msvc2015-$(VERSION).exe" -O \
- qt-opensource-windows-x86-msvc2015-$(VERSION).exe