os/kernelhwsrv/kernel/eka/nkern/nkern.mmp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/kernelhwsrv/kernel/eka/nkern/nkern.mmp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,78 @@
     1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of the License "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// e32/nkern/nkern.mmp
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +sourcepath				../nkern
    1.22 +source					nkern.cpp
    1.23 +#ifdef MARM
    1.24 +sourcepath				../common/arm
    1.25 +source					atomics.cia
    1.26 +sourcepath				../nkern/arm
    1.27 +source					vectors.cia ncsched.cpp ncsched.cia nctimer.cia ncutilf.cia
    1.28 +
    1.29 +// X86
    1.30 +#elif defined(X86)
    1.31 +#if defined(GCC32)
    1.32 +sourcepath				../common/x86
    1.33 +source					atomics.cia
    1.34 +#elif defined(VC32)
    1.35 +sourcepath				../common/win32
    1.36 +source					atomics.cpp
    1.37 +#endif
    1.38 +sourcepath				../nkern/x86
    1.39 +source					ncsched.cia
    1.40 +source					ncthrd.cia
    1.41 +source					ncutilf.cia
    1.42 +source					ncutils.cia
    1.43 +source					vectors.cia
    1.44 +source					ncsched.cpp
    1.45 +source					nctimer.cpp
    1.46 +source					ncutilf.cpp
    1.47 +source					ncutils.cpp
    1.48 +source					vectors.cpp
    1.49 +#elif defined(WINS)
    1.50 +sourcepath				../common/win32
    1.51 +source					atomics.cpp
    1.52 +sourcepath				../nkern/win32
    1.53 +source					vectors.cpp ncsched.cpp nctimer.cpp ncutilf.cpp ncutils.cpp
    1.54 +#endif
    1.55 +
    1.56 +sourcepath				../nkern
    1.57 +source					nkerns.cpp sched.cpp dfcs.cpp nk_timer.cpp
    1.58 +#ifdef MARM
    1.59 +sourcepath				../nkern/arm
    1.60 +source					ncutils.cia
    1.61 +source					ncutils.cpp
    1.62 +#elif defined(X86)
    1.63 +sourcepath				../nkern/x86
    1.64 +#elif defined(WINS)
    1.65 +sourcepath				../nkern/win32
    1.66 +#endif
    1.67 +source					ncthrd.cpp ncglob.cpp
    1.68 +
    1.69 +START ARMCC
    1.70 +ARMRT
    1.71 +#ifdef ARMCC_2
    1.72 +ARMLIBS					c_a__un.l cpprt_a__u.l
    1.73 +#ifndef ARMCC_2_1
    1.74 +ARMLIBS					h_a__un.l 
    1.75 +#endif
    1.76 +#else
    1.77 +ARMLIBS					c_4.l     h_4.l     cpprt_4.l
    1.78 +#endif
    1.79 +END
    1.80 +
    1.81 +