summaryrefslogtreecommitdiffstats
path: root/private/os2/client/thunk/all.cmd
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--private/os2/client/thunk/all.cmd30
1 files changed, 30 insertions, 0 deletions
diff --git a/private/os2/client/thunk/all.cmd b/private/os2/client/thunk/all.cmd
new file mode 100644
index 000000000..9934a9231
--- /dev/null
+++ b/private/os2/client/thunk/all.cmd
@@ -0,0 +1,30 @@
+@echo ***********************************************************************
+@echo *
+@echo * In order to run this script you must check out the following files:
+@echo *
+@echo * doscalls.dll
+@echo * apilist.c
+@echo * ..\..\inc\ldrtabs.h
+@echo * ..\i386\doscalls.asm
+@echo *
+@echo ***********************************************************************
+@REM Save PATH
+@set ALL_PATH=%PATH%
+@PATH .\thunkcom;%PATH%
+@
+@if "%1"=="clean" goto clean
+@if "%1"=="dbcs" goto dbcs
+@
+nmake
+@goto end
+:dbcs
+nmake -i DBCS=1
+@goto end
+:clean
+nmake -i clean
+@
+:end
+@REM Restore PATH
+@set PATH=%ALL_PATH%
+@set ALL_PATH=
+