Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
313 dpurdie 1
@echo off
2
REM	#Pick one of the following methods ....
3
REM	#
4
REM	#sh -c "cmdfile @cmdfile.tst > cmdfile.out 2>&1"
5
REM	#wd cmdfile @cmdfile.tst
6
 
7
 if "%1" == "win" goto win
8
 if "%1" == "dos" oto dos
9
 echo   Unknown target ...
10
 goto   exit
11
 
12
:win
13
 echo WIN32...
14
 WIN32D.BIN\cmdfile @cmdfile.tst > cmdfile.out
15
 WIN32D.BIN\cmdfile @cmdfile2.tst > cmdfile2.out
16
 WIN32D.BIN\cmdfile @cmdfile3.tst > cmdfile3.out
17
 goto exit
18
 
19
:dos
20
 echo DOS...
21
 DOS16D.BIN\cmdfile @cmdfile.tst > cmdfile.out
22
 DOS16D.BIN\cmdfile @cmdfile2.tst > cmdfile2.out
23
 goto exit
24
 
25
:exit