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
35 lines
1.1 KiB
Plaintext
35 lines
1.1 KiB
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.
|
|
# **
|
|
# ****************************************************************************/
|
|
|
|
|
|
POST_LINK_TARGET:=POST_LINK_$(PLATFORM_PATH)_$(CFG_PATH)_$(call sanitise,$(LINK_TARGET))
|
|
POST_LINK_DEP:=$(EPOCROOT)/epoc32/release/$(PLATFORM_PATH)/$(CFG_PATH)/$(LINK_TARGET)
|
|
|
|
# Passing $(PLATFORM_PATH) etc. variables in FLM options makes sbsv2 toolchain to double the dollar signs,
|
|
# requiring evaluating them twice in order to get desired values,
|
|
# so do an extra evaluation before using the command.
|
|
define command_fixer
|
|
THE_COMMAND:=$(POST_LINK_CMD)
|
|
endef
|
|
|
|
all_qmake_emulator_deployment_dependencies:: $(POST_LINK_TARGET)
|
|
|
|
define qmake_post_link
|
|
$(ALLTARGET):: $(POST_LINK_TARGET)
|
|
|
|
$(POST_LINK_TARGET): $(POST_LINK_DEP)
|
|
$(call startrule,qmake_post_link) \
|
|
$(THE_COMMAND) \
|
|
$(call endrule,qmake_post_link)
|
|
endef
|
|
|
|
$(eval $(command_fixer))
|
|
$(eval $(qmake_post_link))
|
|
|