summaryrefslogtreecommitdiffstats
path: root/mkspecs/symbian-sbsv2/flm/qt/qmake_store_build.flm
diff options
context:
space:
mode:
authorLiang Qi <liang.qi@nokia.com>2011-10-31 13:34:01 +0100
committerQt by Nokia <qt-info@nokia.com>2011-11-01 01:51:32 +0100
commitc9ef22b18585b228b47a9f1a20e000bd1b1b0f54 (patch)
treea0b89b3eec56a715267ddc395c668777960c81a4 /mkspecs/symbian-sbsv2/flm/qt/qmake_store_build.flm
parent0d95e16c296aa04b68b86383aa1ffad27f9eef6c (diff)
Remove S60/symbian specific mkspec
Clean up and remove Symbian specific mkspec. Change-Id: I0fa75287720db92983422611e0090301d06814ec Reviewed-by: Lars Knoll <lars.knoll@nokia.com> Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'mkspecs/symbian-sbsv2/flm/qt/qmake_store_build.flm')
-rw-r--r--mkspecs/symbian-sbsv2/flm/qt/qmake_store_build.flm48
1 files changed, 0 insertions, 48 deletions
diff --git a/mkspecs/symbian-sbsv2/flm/qt/qmake_store_build.flm b/mkspecs/symbian-sbsv2/flm/qt/qmake_store_build.flm
deleted file mode 100644
index 4bbc7564a2..0000000000
--- a/mkspecs/symbian-sbsv2/flm/qt/qmake_store_build.flm
+++ /dev/null
@@ -1,48 +0,0 @@
-# /****************************************************************************
-# **
-# ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
-# ** Contact: Nokia Corporation (qt-info@nokia.com)
-# **
-# ** This file is part of symbian-sbsv2 mkspec.
-# **
-# ****************************************************************************/
-
-
-SINGLETON:=$(call sanitise,TSTORE_SINGLETON_$(EXTENSION_ROOT))
-
-ifeq ($($(SINGLETON)),)
-# Prevent duplicate targets from being created, as that can lead to build breaks
-# in multiprocessor systems if two or more targets try to write to .make.cache at
-# the same time.
-$(SINGLETON):=1
-
-STORE_BUILD_TARGET:=$(call sanitise,TSTORE_BUILD_$(PLATFORM_PATH)_$(CFG_PATH)_$(EXTENSION_ROOT))
-CACHE_FILENAME:=$(EXTENSION_ROOT)/.make.cache
-
-ifeq "$(CFG_PATH)" "udeb"
-VISUAL_CFG:=DEBUG
-else
-VISUAL_CFG:=RELEASE
-endif
-
-define qmake_store_build
-$(ALLTARGET):: $(STORE_BUILD_TARGET)
-
-$(STORE_BUILD_TARGET):
- $(call startrule,qmake_store_build) \
- echo "# ==============================================================================" > $(CACHE_FILENAME) && \
- echo "# This file is generated by make and should not be modified by the user" >> $(CACHE_FILENAME) && \
- echo "# Name : .make.cache" >> $(CACHE_FILENAME) && \
- echo "# Part of : " >> $(CACHE_FILENAME) && \
- echo "# Description : This file is used to cache last build target for" >> $(CACHE_FILENAME) && \
- echo "# make sis target." >> $(CACHE_FILENAME) && \
- echo "# Version : " >> $(CACHE_FILENAME) && \
- echo "# ==============================================================================" >> $(CACHE_FILENAME) && \
- echo QT_SIS_TARGET ?= $(VISUAL_CFG)-$(PLATFORM_PATH) >> $(CACHE_FILENAME)
- $(call endrule,qmake_store_build)
-endef
-
-$(eval $(qmake_store_build))
-$(eval $(call GenerateStandardCleanTarget,$(CACHE_FILENAME),''))
-endif
-