Ignore:
Timestamp:
2009-11-26T21:46:54+13:00 (14 years ago)
Author:
davidb
Message:

tidy up on support for installclean

Location:
extensions/gsdl-video/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • extensions/gsdl-video/trunk/cascade-make/lib/cascade-lib.bash

    r18955 r20974  
    161161distclean=0
    162162tarclean=0
     163installclean=0
    163164
    164165if [ $# -gt 0 ] ; then
    165166  for cmd in $* ; do
    166167    echo $cmd
    167     if   [ $cmd = "untar" ] ;     then force_untar=1
    168     elif [ $cmd = "configure" ] ; then force_config=1
    169     elif [ $cmd = "compile" ]   ; then compile=1
    170     elif [ $cmd = "install" ]   ; then install=1 
    171     elif [ $cmd = "clean" ]     ; then clean=1 
    172     elif [ $cmd = "distclean" ] ; then distclean=1
    173     elif [ $cmd = "tarclean" ] ;  then tarclean=1
     168    if   [ $cmd = "untar" ] ;        then force_untar=1
     169    elif [ $cmd = "configure" ] ;    then force_config=1
     170    elif [ $cmd = "compile" ]   ;    then compile=1
     171    elif [ $cmd = "install" ]   ;    then install=1 
     172    elif [ $cmd = "clean" ]     ;    then clean=1 
     173    elif [ $cmd = "distclean" ] ;    then distclean=1
     174    elif [ $cmd = "tarclean" ] ;     then tarclean=1
     175    elif [ $cmd = "installclean" ] ; then installclean=1
    174176    fi
    175177  done
     
    183185  distclean=0
    184186  tarclean=0
     187  installclean=0
    185188fi
    186189
  • extensions/gsdl-video/trunk/cascade-make/lib/cascade-lib.bat

    r18993 r20974  
    1313set distclean=0
    1414set tarclean=0
     15set installclean=0
    1516
    1617if "%*" NEQ "" (
    1718  for /D %%c IN (%*) do (
    1819    echo %%c
    19     if "%%c" == "untar"     set force_untar=1
    20     if "%%c" == "compile"   set compile=1
    21     if "%%c" == "install"   set install=1 
    22     if "%%c" == "clean"     set clean=1 
    23     if "%%c" == "distclean" set distclean=1
    24     if "%%c" == "tarclean"  set tarclean=1
     20    if "%%c" == "untar"        set force_untar=1
     21    if "%%c" == "compile"      set compile=1
     22    if "%%c" == "install"      set install=1 
     23    if "%%c" == "clean"        set clean=1 
     24    if "%%c" == "distclean"    set distclean=1
     25    if "%%c" == "tarclean"     set tarclean=1
     26    if "%%c" == "installclean" set installclean=1
    2527  )
    2628) else (
     
    3234  set distclean=0
    3335  set tarclean=0
     36  set installclean=0
    3437)
    3538
  • extensions/gsdl-video/trunk/runtime-srcpack/packages/CASCADE-MAKE/FLOWPLAYER.sh

    r18994 r20974  
    1 
    21#!/bin/bash
    32
Note: See TracChangeset for help on using the changeset viewer.