3
|
1 |
# Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
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 |
# ARMv5 LIB ABIv2 Function Like Makefile (FLM)
|
|
15 |
# Build an e32 static library
|
|
16 |
#
|
|
17 |
#
|
|
18 |
|
|
19 |
ifeq ($(TARGETTYPE),lib)
|
|
20 |
include $(FLMHOME)/e32abiv2defaults.mk
|
|
21 |
|
|
22 |
ifeq ($(FEATUREVARIANT),1)
|
|
23 |
$(error TARGETTYPE lib cannot be FEATUREVARIANT (in $(PROJECT_META) from $(COMPONENT_META)))
|
|
24 |
endif
|
|
25 |
|
|
26 |
POSTLINKFILETYPE:=lib
|
|
27 |
MULTIFILE_ENABLED:=
|
|
28 |
include $(FLMHOME)/e32abiv2.flm
|
|
29 |
|
|
30 |
else
|
|
31 |
$(error $e32abiv2dll.flm called with wrong TARGETTYPE (should be 'lib' but is '$(TARGETTYPE)'))
|
|
32 |
endif
|