Files @ r19223:dca421b3049b
Branch filter:

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

michi_cc
(svn r24126) -Feature [FS#3854]: Drag and drop support for the NewGRF list window. (Based on patch by sbr)
#!/bin/sh

# $Id$

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