core/src/fshell.mmp
changeset 25 482757737e59
parent 0 7f656887cf89
child 42 a581f3c08c9a
child 50 e81b4e28b3e2
equal deleted inserted replaced
24:0653c7ef68b2 25:482757737e59
    75 source          gobble.cpp
    75 source          gobble.cpp
    76 source          xmodem.cpp
    76 source          xmodem.cpp
    77 source          ymodem.cpp
    77 source          ymodem.cpp
    78 source          version.cpp
    78 source          version.cpp
    79 
    79 
       
    80 // There doesn't seem to be a nice way of turning the platform into a string, like you have $(PLATFORM) in extension makefiles, sigh.
       
    81 #if defined(WINSCW)
       
    82 #define PLAT platform_WINSCW
       
    83 #elif defined(GCCE)
       
    84 #define PLAT platform_GCCE
       
    85 #elif defined(MARM_ARM4)
       
    86 #define PLAT platform_ARM4
       
    87 #elif defined(MARM_ARMV5)
       
    88 #define PLAT platform_ARMV5
       
    89 #endif
       
    90 
       
    91 #ifdef SBSV2
       
    92 sourcepath      /epoc32/build/fshell/core/generated/PLAT
       
    93 #else
       
    94 sourcepath      \epoc32\build\fshell\core\generated\ ## PLAT
       
    95 #endif
       
    96 source          fshell_version.cpp
       
    97 
       
    98 #ifdef FSHELL_CORE_SUPPORT_LICENSE
    80 sourcepath      \epoc32\build\fshell\core\generated
    99 sourcepath      \epoc32\build\fshell\core\generated
    81 source          fshell_version.cpp
       
    82 #ifdef FSHELL_CORE_SUPPORT_LICENSE
       
    83 source          license.cpp
   100 source          license.cpp
    84 #endif
   101 #endif
    85 
   102 
    86 library         euser.lib
   103 library         euser.lib
    87 library         efsrv.lib
   104 library         efsrv.lib
    88 library         hal.lib
   105 library         hal.lib
    89 library         iocli.lib
   106 library         iocli.lib
    90 library			lineeditor.lib
   107 library			lineeditor.lib
    91 library			ltkutils-tcb.lib
   108 library			ltkutils-tcb.lib
    92 
       
    93 START WINS
       
    94 win32_library   kernel32.lib
       
    95 END