diff options
author | matthijs <matthijs@openttd.org> | 2013-09-19 07:42:13 +0000 |
---|---|---|
committer | matthijs <matthijs@openttd.org> | 2013-09-19 07:42:13 +0000 |
commit | e25844cdf2d243ea62dff53056819887ddfe610f (patch) | |
tree | d4827f8c464da5d179e756381b84fd1b59f19143 /os | |
parent | 0e7bfdfbd40168884a4072f1ecd27d70be8b0ceb (diff) | |
download | openttd-e25844cdf2d243ea62dff53056819887ddfe610f.tar.xz |
(svn r25780) -Change: [DOS] Put cwsdpmi and exe2coff files in subdirectories.
- Since these are different components, distributed under a different
license, mixing them in the same directory is confusing.
Diffstat (limited to 'os')
-rw-r--r-- | os/dos/cwsdpmi/cwsdpmi.exe (renamed from os/dos/cwsdpmi.exe) | bin | 20125 -> 20125 bytes | |||
-rw-r--r-- | os/dos/cwsdpmi/cwsdpmi.txt (renamed from os/dos/cwsdpmi.txt) | 0 | ||||
-rw-r--r-- | os/dos/cwsdpmi/cwsdstub.exe (renamed from os/dos/cwsdstub.exe) | bin | 21504 -> 21504 bytes | |||
-rw-r--r-- | os/dos/exe2coff/copying (renamed from os/dos/copying) | 0 | ||||
-rw-r--r-- | os/dos/exe2coff/copying.dj (renamed from os/dos/copying.dj) | 0 | ||||
-rw-r--r-- | os/dos/exe2coff/copying.lib (renamed from os/dos/copying.lib) | 0 | ||||
-rw-r--r-- | os/dos/exe2coff/exe2coff.c (renamed from os/dos/exe2coff.c) | 0 | ||||
-rwxr-xr-x | os/dos/make_dos_binary_selfcontained.sh | 8 |
8 files changed, 4 insertions, 4 deletions
diff --git a/os/dos/cwsdpmi.exe b/os/dos/cwsdpmi/cwsdpmi.exe Binary files differindex 17e322002..17e322002 100644 --- a/os/dos/cwsdpmi.exe +++ b/os/dos/cwsdpmi/cwsdpmi.exe diff --git a/os/dos/cwsdpmi.txt b/os/dos/cwsdpmi/cwsdpmi.txt index 14b09c4d7..14b09c4d7 100644 --- a/os/dos/cwsdpmi.txt +++ b/os/dos/cwsdpmi/cwsdpmi.txt diff --git a/os/dos/cwsdstub.exe b/os/dos/cwsdpmi/cwsdstub.exe Binary files differindex fabaf3bf4..fabaf3bf4 100644 --- a/os/dos/cwsdstub.exe +++ b/os/dos/cwsdpmi/cwsdstub.exe diff --git a/os/dos/copying b/os/dos/exe2coff/copying index a43ea2126..a43ea2126 100644 --- a/os/dos/copying +++ b/os/dos/exe2coff/copying diff --git a/os/dos/copying.dj b/os/dos/exe2coff/copying.dj index 8a5504784..8a5504784 100644 --- a/os/dos/copying.dj +++ b/os/dos/exe2coff/copying.dj diff --git a/os/dos/copying.lib b/os/dos/exe2coff/copying.lib index bbe3fe198..bbe3fe198 100644 --- a/os/dos/copying.lib +++ b/os/dos/exe2coff/copying.lib diff --git a/os/dos/exe2coff.c b/os/dos/exe2coff/exe2coff.c index aa072e8e4..aa072e8e4 100644 --- a/os/dos/exe2coff.c +++ b/os/dos/exe2coff/exe2coff.c diff --git a/os/dos/make_dos_binary_selfcontained.sh b/os/dos/make_dos_binary_selfcontained.sh index c21e29d2c..259e50237 100755 --- a/os/dos/make_dos_binary_selfcontained.sh +++ b/os/dos/make_dos_binary_selfcontained.sh @@ -3,9 +3,9 @@ # $Id$ cd `dirname $0` -cc -o exe2coff exe2coff.c || exit +cc -o exe2coff/exe2coff exe2coff/exe2coff.c || exit cp $1 binary.exe || exit -./exe2coff binary.exe || exit -cat cwsdstub.exe binary > binary.exe || exit +./exe2coff/exe2coff binary.exe || exit +cat cwsdpmi/cwsdstub.exe binary > binary.exe || exit mv binary.exe $1 -rm binary exe2coff +rm binary exe2coff/exe2coff |