Mercurial > ecos
view host/tools/configtool/standalone/wxwin/makect.sh @ 3292:7f8e529b4d82 default tip
Fix FREESCALE_EDMA_NBYTES_MLOFFYES_MLOFF() so it works with negative offsets.
| author | vae |
|---|---|
| date | Wed, 29 Apr 2015 23:31:48 +0000 |
| parents | 0d0f03f76f6a |
| children |
line wrap: on
line source
#!/bin/sh # A shell script for helping to compile the Configuration Tool LEVEL=$1 TARGET="$2 $3 $4 $5 $6 $7 $8 $9" if [ "$1" = "" ] || [ "$2" = "" ]; then echo Usage: makect debug/release full/wx/ct/ecc/cleanall exit fi if [ "$LEVEL" != "debug" ] && [ "$LEVEL" != "release" ]; then echo First argument should be debug or release. exit fi ECOSDIR=/home/julians/cvs/eCos # Necessary if you are using a local version of the compiler # and these haven't been installed export BISON_SIMPLE=/usr/lib/bison.simple export BISON_HAIRY=/usr/lib/bison.hairy export ECOSDIR export CONFIGTOOLSRCDIR=$ECOSDIR/host/tools/configtool/standalone/wxwin export WXDIR=/home/julians/local/wx2dev/wxWindows make -f ${CONFIGTOOLSRCDIR}/Makefile WXDIR=$WXDIR ECOSDIR=$ECOSDIR LEVEL=$LEVEL $TARGET
