summaryrefslogtreecommitdiff
path: root/os/dos/make_dos_binary_selfcontained.sh
diff options
context:
space:
mode:
Diffstat (limited to 'os/dos/make_dos_binary_selfcontained.sh')
-rwxr-xr-xos/dos/make_dos_binary_selfcontained.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/os/dos/make_dos_binary_selfcontained.sh b/os/dos/make_dos_binary_selfcontained.sh
new file mode 100755
index 000000000..de4bdb9dd
--- /dev/null
+++ b/os/dos/make_dos_binary_selfcontained.sh
@@ -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