~son-of-yhwh/widelands/experimental

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

if [ ! -e utils/scons.py ] ; then
	cd utils
	tar xzf scons-local-0.96.1.tar.gz
	cd -
fi

for i in $* ; do
	if [ "$i" = "--help" ] ; then
		echo syntax: $0 [OPTIONS]
		echo
		echo OPTIONS List - Use only absolute paths:
		python utils/scons.py -Q -h
		exit 0
	fi
done

python utils/scons.py $*