38be0d1383
This is the beginning of revision history for this module. If you want to look at revision history older than this, please refer to the Qt Git wiki for how to use Git history grafting. At the time of writing, this wiki is located here: http://qt.gitorious.org/qt/pages/GitIntroductionWithQt If you have already performed the grafting and you don't see any history beyond this commit, try running "git log" with the "--follow" argument. Branched from the monolithic repo, Qt master branch, at commit 896db169ea224deb96c59ce8af800d019de63f12
38 lines
951 B
Plaintext
38 lines
951 B
Plaintext
# /****************************************************************************
|
|
# **
|
|
# ** 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,TARGET_$(PREDEP_TARGET))
|
|
|
|
$(call makepathfor,$(PREDEP_TARGET))
|
|
|
|
ifeq ($(patsubst /epoc32/%,MATCH,$(firstword $(COMMAND))),MATCH)
|
|
COMMAND:=$(EPOCROOT)$(COMMAND)
|
|
endif
|
|
|
|
define qmake_extra_pre_targetdep
|
|
EXPORT:: $(PREDEP_TARGET)
|
|
|
|
# Prevent duplicate targets from being created
|
|
$(SINGLETON):=1
|
|
|
|
$(PREDEP_TARGET): $(DEPS)
|
|
$(call startrule,qmake_extra_pre_targetdep,FORCESUCCESS) \
|
|
$(COMMAND) \
|
|
$(call endrule,qmake_extra_pre_targetdep)
|
|
endef
|
|
|
|
ifeq ($($(SINGLETON)),)
|
|
$(eval $(qmake_extra_pre_targetdep))
|
|
$(eval $(call GenerateStandardCleanTarget,$(PREDEP_TARGET),''))
|
|
endif
|
|
|
|
|
|
|