author | Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com> |
Tue, 31 Aug 2010 16:34:26 +0300 | |
branch | RCL_3 |
changeset 256 | c1f20ce4abcf |
parent 0 | a41df078684a |
child 257 | 3e88ff8f41d5 |
permissions | -rw-r--r-- |
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 |
|
256
c1f20ce4abcf
Revision: 201035
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
19 |
source nkern.cpp nklib.cpp |
0 | 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 |
|
256
c1f20ce4abcf
Revision: 201035
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
25 |
source nklib.cia |
0 | 26 |
|
27 |
// X86 |
|
28 |
#elif defined(X86) |
|
29 |
#if defined(GCC32) |
|
30 |
sourcepath ../common/x86 |
|
31 |
source atomics.cia |
|
32 |
#elif defined(VC32) |
|
33 |
sourcepath ../common/win32 |
|
34 |
source atomics.cpp |
|
35 |
#endif |
|
36 |
sourcepath ../nkern/x86 |
|
37 |
source ncsched.cia |
|
38 |
source ncthrd.cia |
|
39 |
source ncutilf.cia |
|
40 |
source ncutils.cia |
|
41 |
source vectors.cia |
|
42 |
source ncsched.cpp |
|
43 |
source nctimer.cpp |
|
44 |
source ncutilf.cpp |
|
45 |
source ncutils.cpp |
|
46 |
source vectors.cpp |
|
47 |
#elif defined(WINS) |
|
48 |
sourcepath ../common/win32 |
|
49 |
source atomics.cpp |
|
50 |
sourcepath ../nkern/win32 |
|
51 |
source vectors.cpp ncsched.cpp nctimer.cpp ncutilf.cpp ncutils.cpp |
|
52 |
#endif |
|
53 |
||
54 |
sourcepath ../nkern |
|
55 |
source nkerns.cpp sched.cpp dfcs.cpp nk_timer.cpp |
|
56 |
#ifdef MARM |
|
57 |
sourcepath ../nkern/arm |
|
58 |
source ncutils.cia |
|
59 |
source ncutils.cpp |
|
60 |
#elif defined(X86) |
|
61 |
sourcepath ../nkern/x86 |
|
62 |
#elif defined(WINS) |
|
63 |
sourcepath ../nkern/win32 |
|
64 |
#endif |
|
65 |
source ncthrd.cpp ncglob.cpp |
|
66 |
||
67 |
START ARMCC |
|
68 |
ARMRT |
|
69 |
#ifdef ARMCC_2 |
|
70 |
ARMLIBS c_a__un.l cpprt_a__u.l |
|
71 |
#ifndef ARMCC_2_1 |
|
72 |
ARMLIBS h_a__un.l |
|
73 |
#endif |
|
74 |
#else |
|
256
c1f20ce4abcf
Revision: 201035
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
75 |
#ifdef ARMCC_4 |
c1f20ce4abcf
Revision: 201035
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
76 |
ARMLIBS c_5.l h_5.l cpprt_5.l |
c1f20ce4abcf
Revision: 201035
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
77 |
#else |
0 | 78 |
ARMLIBS c_4.l h_4.l cpprt_4.l |
79 |
#endif |
|
256
c1f20ce4abcf
Revision: 201035
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
80 |
#endif |
0 | 81 |
END |
82 |
||
83 |