0
|
1 |
// Copyright (c) 1997-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 |
// e32/nkern/nkern.mmp
|
|
15 |
//
|
|
16 |
//
|
|
17 |
|
|
18 |
sourcepath ../nkern
|
|
19 |
source nkern.cpp
|
|
20 |
#ifdef MARM
|
|
21 |
sourcepath ../common/arm
|
|
22 |
source atomics.cia
|
|
23 |
sourcepath ../nkern/arm
|
|
24 |
source vectors.cia ncsched.cpp ncsched.cia nctimer.cia ncutilf.cia
|
|
25 |
|
|
26 |
// X86
|
|
27 |
#elif defined(X86)
|
|
28 |
#if defined(GCC32)
|
|
29 |
sourcepath ../common/x86
|
|
30 |
source atomics.cia
|
|
31 |
#elif defined(VC32)
|
|
32 |
sourcepath ../common/win32
|
|
33 |
source atomics.cpp
|
|
34 |
#endif
|
|
35 |
sourcepath ../nkern/x86
|
|
36 |
source ncsched.cia
|
|
37 |
source ncthrd.cia
|
|
38 |
source ncutilf.cia
|
|
39 |
source ncutils.cia
|
|
40 |
source vectors.cia
|
|
41 |
source ncsched.cpp
|
|
42 |
source nctimer.cpp
|
|
43 |
source ncutilf.cpp
|
|
44 |
source ncutils.cpp
|
|
45 |
source vectors.cpp
|
|
46 |
#elif defined(WINS)
|
|
47 |
sourcepath ../common/win32
|
|
48 |
source atomics.cpp
|
|
49 |
sourcepath ../nkern/win32
|
|
50 |
source vectors.cpp ncsched.cpp nctimer.cpp ncutilf.cpp ncutils.cpp
|
|
51 |
#endif
|
|
52 |
|
|
53 |
sourcepath ../nkern
|
|
54 |
source nkerns.cpp sched.cpp dfcs.cpp nk_timer.cpp
|
|
55 |
#ifdef MARM
|
|
56 |
sourcepath ../nkern/arm
|
|
57 |
source ncutils.cia
|
|
58 |
source ncutils.cpp
|
|
59 |
#elif defined(X86)
|
|
60 |
sourcepath ../nkern/x86
|
|
61 |
#elif defined(WINS)
|
|
62 |
sourcepath ../nkern/win32
|
|
63 |
#endif
|
|
64 |
source ncthrd.cpp ncglob.cpp
|
|
65 |
|
|
66 |
START ARMCC
|
|
67 |
ARMRT
|
|
68 |
#ifdef ARMCC_2
|
|
69 |
ARMLIBS c_a__un.l cpprt_a__u.l
|
|
70 |
#ifndef ARMCC_2_1
|
|
71 |
ARMLIBS h_a__un.l
|
|
72 |
#endif
|
|
73 |
#else
|
|
74 |
ARMLIBS c_4.l h_4.l cpprt_4.l
|
|
75 |
#endif
|
|
76 |
END
|
|
77 |
|
|
78 |
|