config/options:

- add support for "ARCH=??? make" to set Target Architecture
This commit is contained in:
Stephan Raue 2010-01-15 01:34:54 +01:00
parent 0c46acb452
commit ee152b8b71

View File

@ -1,6 +1,13 @@
# Project name
PROJECT=${PROJECT}
# determines TARGET_ARCH, if not forced by user
if [ -z "$ARCH" ]; then
TARGET_ARCH="i386"
else
TARGET_ARCH=$ARCH
fi
ROOT=`pwd`
PROJECT_DIR=$ROOT/projects