os/kernelhwsrv/kerneltest/e32test/examples/exdriver/exdriver.inf
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2006-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 // e32test/examples/exdriver/exdriver.inf
    15 // Tutorial reference drivers
    16 // 
    17 //
    18 
    19 PRJ_PLATFORMS
    20 ARMV5 WINSCW
    21 
    22 PRJ_TESTMMPFILES
    23 // build only for ARMV5 and WINSCW, as we are not supporting other platforms
    24 #if defined(MARM_ARMV5)||defined(WINSCW)
    25 // pio, synch reference driver
    26 exdriver_pio/group/d_expio_ldd	support
    27 exdriver_pio/group/t_expio_user	support		
    28 #endif
    29 
    30 // build these drivers only for ARMV5, as we are not supporting other platforms
    31 #if defined(MARM_ARMV5)
    32 // interrupts,dfc,asynch reference driver
    33 exdriver_int/group/d_exint_ldd	support
    34 exdriver_int/group/t_exint_user	support
    35 exdriver_sync/group/d_exsync_ldd	support
    36 exdriver_sync/group/t_exsync_user	support
    37 // dma reference driver
    38 exdriver_dma/group/d_exdma_ldd	support
    39 exdriver_dma/group/t_exdma_user	support
    40 exdriver_chnk/group/d_exchnk_ldd	support
    41 exdriver_chnk/group/t_exchnk_user	support
    42 #endif