converted to unchained mode
[dos_low3d] / tools / unpacksrc
diff --git a/tools/unpacksrc b/tools/unpacksrc
new file mode 100755 (executable)
index 0000000..31c609b
--- /dev/null
@@ -0,0 +1,17 @@
+#!/bin/sh
+
+unzip low3d.zip || exit 1
+
+if [ -f makefile ]; then
+       mv makefile Makefile
+fi
+if [ -f tools/makefile ]; then
+       mv tools/makefile tools/Makefile
+fi
+
+dos2unix src/*.c
+dos2unix src/*.h
+dos2unix src/*.asm
+dos2unix tools/*.c
+dos2unix Makefile tools/Makefile
+dos2unix tools/packsrc tools/unpacksrc