home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1998 September / PCO_0998.ISO / filesbbs / dos / sbbs_src.exe / WMAKEALL.BAT < prev   
Encoding:
DOS Batch File  |  1997-04-26  |  897 b   |  39 lines

  1. @echo off
  2. rem
  3. rem Makes all Watcom compiled Synchronet projects - April 1997 Rob Swindell
  4. rem
  5. cd sbbs\addfiles
  6. call makeall.bat %1 %2 %3 %4 %5
  7. if errorlevel 1 goto err
  8. cd ..\delfiles
  9. call makeall.bat %1 %2 %3 %4 %5
  10. if errorlevel 1 goto err
  11. cd ..\dupefind
  12. call makeall.bat %1 %2 %3 %4 %5
  13. if errorlevel 1 goto err
  14. cd ..\echo
  15. wmake -f sbbsecho.wat OS=OS2  %1 %2 %3 %4 %5
  16. if errorlevel 1 goto err
  17. wmake -f sbbsecho.wat OS=DOS4G  %1 %2 %3 %4 %5
  18. if errorlevel 1 goto err
  19. wmake -f sbbsecho.wat OS=NT  %1 %2 %3 %4 %5
  20. if errorlevel 1 goto err
  21. cd ..\filelist
  22. call makeall.bat %1 %2 %3 %4 %5
  23. if errorlevel 1 goto err
  24. cd ..\smb\smbutil
  25. call makeall.bat %1 %2 %3 %4 %5
  26. if errorlevel 1 goto err
  27. cd ..\..\smbactiv
  28. call makeall.bat %1 %2 %3 %4 %5
  29. if errorlevel 1 goto err
  30. rem End of makes
  31. cd ..\..
  32. goto end
  33. :err
  34. rem Error occurred
  35. echo.
  36. echo There was an error!
  37. echo.
  38. :end
  39.