* Noted that autoconf tools are needed, v1.9 or older
* Fixed build scripts to take a number to call `make -jX`
./autogen.sh
./configure --with-x --with-gnu-ld --enable-itg-arcade --target=i386-pc-linux-gnu --host=i386-pc-linux-gnu
-make
+if [ "x$1" == "x" ];
+then
+ make
+else
+ make -j$1
+fi
#!/bin/sh
+# XXX: Move this to make land!
+./generate-version
./autogen.sh
-# TODO: make this actually build 64-bit
-./configure --with-x --with-gnu-ld --target=i386-pc-linux-gnu --host=i386-pc-linux-gnu
-make
+#./configure --with-x --with-gnu-ld --target=i386-pc-linux-gnu --host=i386-pc-linux-gnu
+./configure --with-x --with-gnu-ld
+if [ "x$1" == "x" ];
+then
+ make
+else
+ make -j$1
+fi
debian squeeze/sid packages:
+automake1.9 # newer versions do not work!
libsdl1.2-dev
libglu1-mesa-dev # openGL library
liblualib50-dev