1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-22 05:59:10 +00:00

(svn r14636) -Add: DOS port of OpenTTD, without network support though.

This commit is contained in:
rubidium
2008-11-26 13:12:45 +00:00
parent bb25748a9d
commit a614dd7174
21 changed files with 1225 additions and 29 deletions

View File

@@ -0,0 +1,9 @@
#!/bin/sh
cd `dirname $0`
cc -o exe2coff exe2coff.c || exit
cp $1 binary.exe || exit
./exe2coff binary.exe || exit
cat cwsdstub.exe binary > binary.exe || exit
mv binary.exe $1
rm binary exe2coff