234
|
1 |
# Copyright (c) 2007-2010 Nokia Corporation and/or its subsidiary(-ies).
|
3
|
2 |
# All rights reserved.
|
|
3 |
# This component and the accompanying materials are made available
|
|
4 |
# under the terms of the License "Eclipse Public License v1.0"
|
|
5 |
# which accompanies this distribution, and is available
|
|
6 |
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
7 |
#
|
|
8 |
# Initial Contributors:
|
|
9 |
# Nokia Corporation - initial contribution.
|
|
10 |
#
|
|
11 |
# Contributors:
|
|
12 |
#
|
|
13 |
# Description:
|
|
14 |
# WINSCW PLUGIN Function Like Makefile (FLM)
|
|
15 |
# Build an emulator PLUGIN
|
|
16 |
#
|
|
17 |
#
|
|
18 |
|
234
|
19 |
ifneq ($(filter plugin plugin3,$(TARGETTYPE)),)
|
3
|
20 |
BASE_TYPE:=dll
|
|
21 |
CW_STATIC_RUNTIME:=1
|
|
22 |
FIRST_STATLIB:=
|
|
23 |
FIXED_EXPORT:=?ImplementationGroupProxy@@YAPBUTImplementationProxy@@AAH@Z
|
|
24 |
SUPPORTS_IMPORT_LIBRARY:=0
|
|
25 |
SYSTEM_TARGET:=0
|
234
|
26 |
|
3
|
27 |
UID2_DEFAULT:=10009D8D
|
234
|
28 |
ifeq ($(TARGETTYPE),plugin3)
|
|
29 |
UID2_DEFAULT:=10009D93
|
|
30 |
endif
|
3
|
31 |
|
|
32 |
# Use the general win32 FLM
|
|
33 |
include $(FLMHOME)/win32.flm
|
|
34 |
|
|
35 |
else
|
234
|
36 |
$(error $win32plugin.flm called with wrong TARGETTYPE (should be 'plugin' or 'plugin3' but is '$(TARGETTYPE)'))
|
3
|
37 |
endif
|