blob: 3487f26103140f353a946c7150e63d68201db485 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# /****************************************************************************
# **
# ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
# ** Contact: http://www.qt-project.org/legal
# **
# ** 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))
|