forked from bartvdbraak/blender
39 lines
914 B
Bash
Executable File
39 lines
914 B
Bash
Executable File
#!/bin/sh
|
|
|
|
#
|
|
# This is an example script to build things with the Nan Makefiles
|
|
#
|
|
#
|
|
|
|
rm -f /tmp/.nanguess
|
|
export MAKE=make
|
|
export NANBLENDERHOME=`pwd`
|
|
export MAKEFLAGS="-w -I $NANBLENDERHOME/source --no-print-directory"
|
|
export HMAKE="$NANBLENDERHOME/source/tools/hmake/hmake"
|
|
|
|
export NAN_PYTHON=/soft/python-2.2.2b1/progeny1
|
|
export NAN_PYTHON_VERSION=2.2
|
|
export NAN_OPENAL=/usr/local
|
|
export NAN_JPEG=/usr/local
|
|
export NAN_PNG=/usr/local
|
|
export NAN_SDL=/usr/local
|
|
export NAN_ODE=/usr/local
|
|
export NAN_ZLIB=/usr/local
|
|
export NAN_FREETYPE=/usr/local
|
|
|
|
export NAN_MOZILLA_INC=/usr/local/include/mozilla-1.0.1/
|
|
export NAN_MOZILLA_LIB=/usr/local/lib/mozilla-1.0.1/
|
|
#export NAN_NSPR=/scratch/irulan/mein/nspr-4.2.2/mozilla/nsprpub/dist/
|
|
export CPPFLAGS="$CPPFLAGS"
|
|
export CFLAGS="$CFLAGS"
|
|
export INTERNATIONAL=true
|
|
|
|
$HMAKE -C intern/
|
|
if [ $? -eq 0 ]; then
|
|
$HMAKE -C source/
|
|
fi
|
|
$HMAKE -C release
|
|
|
|
#cd release
|
|
#make
|