Changeset 1420:84352b1c4d06 in roaraudio


Ignore:
Timestamp:
03/26/09 17:47:51 (15 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

added TARGET_MICROCONTROLLER

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    r1419 r1420  
    6969 
    7070TARGET_WIN32=false 
     71TARGET_MICROCONTROLLER=false 
    7172 
    7273EXEC_HELPER='' 
     
    154155   echo '--minimal                   - Disable all optional components' 
    155156   echo '--cross-compile             - Enable cross compiler workarounds' 
     157   echo '--target-microcontroller    - Set Options for mircocontrollers without a OS' 
     158   echo '                              Implys --cross-compile' 
    156159   echo '--target-win32              - Disable everything useful' 
    157160   echo '--exec-helper HELPER        - Exec all test programms using this command (HELPER $cmd $args)' 
     
    299302   EXEC_HELPER="$2" 
    300303   shift; 
     304  ;; 
     305  '--target-microcontroller') 
     306   TARGET_MICROCONTROLLER=true 
     307   CROSS_COMPILE=true 
    301308  ;; 
    302309  '--target-win32') 
     
    522529 
    523530 echo 
    524  $TARGET_WIN32 && echo '#define ROAR_TARGET_WIN32' 
    525                   echo '#define ROAR_OS_'$(echo $SYSNAME | tr a-z A-Z) 
     531 $TARGET_MICROCONTROLLER && echo '#define ROAR_TARGETMICROCONTROLLER' 
     532 $TARGET_WIN32           && echo '#define ROAR_TARGET_WIN32' 
     533                            echo '#define ROAR_OS_'$(echo $SYSNAME | tr a-z A-Z) 
    526534 echo 
    527535} >&3 
Note: See TracChangeset for help on using the changeset viewer.