|
1 /* |
|
2 * Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: Makefile of HSPSTools |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #include <platform_paths.hrh> |
|
20 |
|
21 TARGET hspstools.dll |
|
22 TARGETTYPE dll |
|
23 UID 0x1000008d 0x2001CB56 |
|
24 |
|
25 USERINCLUDE ../inc |
|
26 |
|
27 MW_LAYER_SYSTEMINCLUDE |
|
28 // SYSTEMINCLUDE /epoc32/include // Not needed since MW_LAYER_SYSTEMINCLUDE is used. |
|
29 |
|
30 MACRO HSPS_BUILD_LOG_IMPLEMENTATION // If this macro is not defined, then no logging functionality is built |
|
31 // and only minimal class structure to fullfill exports are built. |
|
32 // This way it is possible to remove unnecessary bits from code segment of |
|
33 // this dll without breaking interface. DO NOT DEFINE IN PRODUCT RELEASE BUILD! |
|
34 |
|
35 SOURCEPATH ../src |
|
36 |
|
37 SOURCE hspstoolsdllmain.cpp hspslogbusfile.cpp hspslogbus.cpp hspslogbusrdebug.cpp hspsodtdump.cpp hspsliwdump.cpp hspsbytebuffer.cpp |
|
38 |
|
39 //By default, the build tools look for the WINSCW def file in a BWINS directory |
|
40 //(at the same level as the directory containing the mmp file), |
|
41 //the GCC ARM def file in a BMARM directory, and the ARMV5 def file in a EABI directory. |
|
42 //If def files are stored in these locations, the project files does not need to specify |
|
43 //the location of the def files explicitly. If you want to store the def files in some other |
|
44 //location, you will need to specify in the project file where the .def files are using |
|
45 //the deffile keyword. |
|
46 |
|
47 //The following commented out code shows how the build system uses the implicit |
|
48 // location for defiles. To create the DEF files Choose Project > Freeze Exports from Carbide |
|
49 // or run 'abld freeze' from the command-line |
|
50 //#if defined (WINS) |
|
51 // DEFFILE ../bwins/HSPSTools.def |
|
52 //#elif defined (GCC32) |
|
53 // DEFFILE ../bmarm/HSPSTools.def |
|
54 //#else |
|
55 // DEFFILE ../eabi/HSPSTools.def |
|
56 //#endif |
|
57 |
|
58 nostrictdef |
|
59 |
|
60 LIBRARY euser.lib flogger.lib hspsdomdocument.lib liwservicehandler.lib estor.lib efsrv.lib hspsodt.lib charconv.lib hspsresource.lib |
|
61 |
|
62 #ifdef ENABLE_ABIV2_MODE |
|
63 DEBUGGABLE |
|
64 #endif |
|
65 |
|
66 // EXPORTUNFROZEN |
|
67 |
|
68 CAPABILITY ALL -TCB |