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 >
DOS Batch File  |  1995-04-10  |  395b  |  23 lines

  1. @echo off
  2.  
  3. cls
  4. echo **** Compiling example source files ****
  5. wmake %1 %2 %3 %4 %5 %6 %7 %8 %9
  6. if errorlevel 1 goto mkerr
  7.  
  8. cls
  9. echo The example executable files were created.
  10. echo.
  11. echo Please run SETUP.EXE to set up sound options.
  12. echo.
  13. goto end
  14.  
  15. :mkerr
  16. echo.
  17. echo There was an error during compilation.
  18. echo Please check out the Makefile source file.
  19. echo.
  20. goto end
  21.  
  22. :end
  23.