summaryrefslogtreecommitdiffstats
path: root/qmake/Makefile.unix.mingw
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@qt.io>2020-12-17 21:44:21 +0100
committerJoerg Bornemann <joerg.bornemann@qt.io>2020-12-21 10:33:33 +0100
commit31396f0affa0464c5d504cea7632f775c4456780 (patch)
tree8284ec6bd43392a5790b0315aae86f14b8c08bb8 /qmake/Makefile.unix.mingw
parentec7eb1eab157ae84992ca20653f48394bb066340 (diff)
Remove qmake-related code from configure
This leaves a very simple script that delegates the heavy configure work to a CMake script. This also removes the Makefile templates that were used for bootstrapping qmake. Task-number: QTBUG-88742 Change-Id: Iab9c477e0bb611d680bda2cf8aaa7ad88356a8d1 Reviewed-by: Kai Koehne <kai.koehne@qt.io>
Diffstat (limited to 'qmake/Makefile.unix.mingw')
-rw-r--r--qmake/Makefile.unix.mingw30
1 files changed, 0 insertions, 30 deletions
diff --git a/qmake/Makefile.unix.mingw b/qmake/Makefile.unix.mingw
deleted file mode 100644
index 816e5d67de..0000000000
--- a/qmake/Makefile.unix.mingw
+++ /dev/null
@@ -1,30 +0,0 @@
-# SHELL is the full path of sh.exe, unless
-# 1) it is found in the current directory
-# 2) it is not found at all
-# 3) it is overridden on the command line with an existing file
-# ... otherwise it is always sh.exe. Specifically, SHELL from the
-# environment has no effect.
-#
-# This check will fail if SHELL is explicitly set to a not
-# sh-compatible shell. This is not a problem, because configure.bat
-# will not do that.
-ifeq ($(SHELL), sh.exe)
- ifeq ($(wildcard ./sh.exe), )
- SH = 0
- else
- SH = 1
- endif
-else
- SH = 1
-endif
-
-ifeq ($(SH), 1)
- RM_F = rm -f
- RM_RF = rm -rf
-else
- RM_F = del /f
- RM_RF = rmdir /s /q
-endif
-ifeq ($(CXX), g++)
- CC = gcc
-endif