Changeset 223


Ignore:
Timestamp:
06/16/11 15:31:48 (13 years ago)
Author:
hozdoba
Message:

Préparation nouvelle arborescence

Location:
XMLIO_V2/dev/common
Files:
6 added
1 edited

Legend:

Unmodified
Added
Removed
  • XMLIO_V2/dev/common/tools/xiosInstall

    r222 r223  
    1515         "--debug") compil_mode="debug" ; shift ;; 
    1616         "--arch")  arch=$2     ; shift ; shift ;; 
     17         "--doc")   doc="true"          ; shift ;; 
    1718         *)         code="$1"           ; shift ;; 
    1819      esac 
    1920   done 
    2021 
     22# Vérification de la présence d'un identifiant d'architecture. 
     23 
    2124if [[ !(-z $arch) ]] 
    2225   then 
    23       rm -f arch.path 
    24       rm -f arch.fcm 
    25       ln -s arch/arch-${arch}.path ./arch.path 
    26       ln -s arch/arch-${arch}.fcm  ./arch.fcm 
    27       source arch.path 
     26      rm -f  $install_dir/arch.path 
     27      rm -f  $install_dir/arch.fcm 
     28      ln -s  $install_dir/arch/arch-${arch}.path $install_dir/arch.path 
     29      ln -s  $install_dir/arch/arch-${arch}.fcm  $install_dir/arch.fcm 
     30      source $install_dir/arch.path 
    2831   else 
    2932      echo "Veuillez definir une architecture cible !" 
    3033      exit 1 
     34fi 
     35 
     36# Vérification de la présence d'un mode de compilation. 
     37 
     38if [[ "$compil_mode" == "prod" ]] 
     39   then 
     40      COMPIL_CFLAGS="%PROD_CFLAGS" 
     41      COMPIL_FFLAGS="%PROD_FFLAGS" 
     42elif [[ "$compil_mode" == "dev" ]] 
     43   then 
     44      COMPIL_CFLAGS="%DEV_CFLAGS" 
     45      COMPIL_FFLAGS="%DEV_FFLAGS" 
     46elif [[ "$compil_mode" == "debug" ]] 
     47   then 
     48      COMPIL_CFLAGS="%DEBUG_CFLAGS" 
     49      COMPIL_FFLAGS="%DEBUG_FFLAGS" 
     50else  
     51   echo "Veuillez definir un mode de compilation [debug|dev|prod] !" 
    3152fi 
    3253 
Note: See TracChangeset for help on using the changeset viewer.