os/kernelhwsrv/kernel/eka/nkern/nkern.mmp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of the License "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// e32/nkern/nkern.mmp
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
sourcepath				../nkern
sl@0
    19
source					nkern.cpp
sl@0
    20
#ifdef MARM
sl@0
    21
sourcepath				../common/arm
sl@0
    22
source					atomics.cia
sl@0
    23
sourcepath				../nkern/arm
sl@0
    24
source					vectors.cia ncsched.cpp ncsched.cia nctimer.cia ncutilf.cia
sl@0
    25
sl@0
    26
// X86
sl@0
    27
#elif defined(X86)
sl@0
    28
#if defined(GCC32)
sl@0
    29
sourcepath				../common/x86
sl@0
    30
source					atomics.cia
sl@0
    31
#elif defined(VC32)
sl@0
    32
sourcepath				../common/win32
sl@0
    33
source					atomics.cpp
sl@0
    34
#endif
sl@0
    35
sourcepath				../nkern/x86
sl@0
    36
source					ncsched.cia
sl@0
    37
source					ncthrd.cia
sl@0
    38
source					ncutilf.cia
sl@0
    39
source					ncutils.cia
sl@0
    40
source					vectors.cia
sl@0
    41
source					ncsched.cpp
sl@0
    42
source					nctimer.cpp
sl@0
    43
source					ncutilf.cpp
sl@0
    44
source					ncutils.cpp
sl@0
    45
source					vectors.cpp
sl@0
    46
#elif defined(WINS)
sl@0
    47
sourcepath				../common/win32
sl@0
    48
source					atomics.cpp
sl@0
    49
sourcepath				../nkern/win32
sl@0
    50
source					vectors.cpp ncsched.cpp nctimer.cpp ncutilf.cpp ncutils.cpp
sl@0
    51
#endif
sl@0
    52
sl@0
    53
sourcepath				../nkern
sl@0
    54
source					nkerns.cpp sched.cpp dfcs.cpp nk_timer.cpp
sl@0
    55
#ifdef MARM
sl@0
    56
sourcepath				../nkern/arm
sl@0
    57
source					ncutils.cia
sl@0
    58
source					ncutils.cpp
sl@0
    59
#elif defined(X86)
sl@0
    60
sourcepath				../nkern/x86
sl@0
    61
#elif defined(WINS)
sl@0
    62
sourcepath				../nkern/win32
sl@0
    63
#endif
sl@0
    64
source					ncthrd.cpp ncglob.cpp
sl@0
    65
sl@0
    66
START ARMCC
sl@0
    67
ARMRT
sl@0
    68
#ifdef ARMCC_2
sl@0
    69
ARMLIBS					c_a__un.l cpprt_a__u.l
sl@0
    70
#ifndef ARMCC_2_1
sl@0
    71
ARMLIBS					h_a__un.l 
sl@0
    72
#endif
sl@0
    73
#else
sl@0
    74
ARMLIBS					c_4.l     h_4.l     cpprt_4.l
sl@0
    75
#endif
sl@0
    76
END
sl@0
    77
sl@0
    78