Files @ r10408:0e4441758184
Branch filter:

Location: cpp/openttd-patchpack/source/os/dos/make_dos_binary_selfcontained.sh

truebrain
(svn r14659) -Add: in case Thief^ (forum user) ever tries what he thinks he will try when he doesn't know it is --prefix-dir, make sure he also gets what he assumes he gets :)
1
2
3
4
5
6
7
8
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