23 lines
448 B
Bash
Executable file
23 lines
448 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
PROJECT=j3d
|
|
GAME=${JOEY}/j3d/j3d
|
|
DATA=(${GAME}/cube.obj ${GAME}/font.sta)
|
|
#SOURCE=(*.c *.h)
|
|
SOURCE=()
|
|
|
|
pushd "${GAME}"
|
|
find . -type f -name "*.xcf" -exec ${JOEY}/utils/xcf2sta.sh {} \;
|
|
popd
|
|
|
|
#. ${JOEY}/dist/IIgs/build-IIgs.helper.sh
|
|
. ${JOEY}/joeylib/scripts/build-IIgs.helper.sh
|
|
. ${JOEY}/joeylib/scripts/build-PC.helper.sh
|
|
|
|
if [[ "$1x" == "x" ]]; then
|
|
#buildLinux32
|
|
buildLinux64
|
|
#buildWindows32
|
|
buildWindows64
|
|
fi
|
|
buildIIgs $1
|