home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 24
/
CD_ASCQ_24_0995.iso
/
dos
/
prg
/
dsik205
/
dsik.dat
/
EXAMPLES
/
MAKE.BAT
< prev
next >
Wrap
DOS Batch File
|
1995-04-10
|
395b
|
23 lines
@echo off
cls
echo **** Compiling example source files ****
wmake %1 %2 %3 %4 %5 %6 %7 %8 %9
if errorlevel 1 goto mkerr
cls
echo The example executable files were created.
echo.
echo Please run SETUP.EXE to set up sound options.
echo.
goto end
:mkerr
echo.
echo There was an error during compilation.
echo Please check out the Makefile source file.
echo.
goto end
:end