home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1998 September / PCO_0998.ISO / filesbbs / dos / sbbs_src.exe / MAKEALL.CMD < prev    next >
Encoding:
Text File  |  1997-04-26  |  1.3 KB  |  64 lines

  1. @echo off
  2. rem
  3. rem Makes all Borland for OS/2 Synchronet projects - April 1997 Rob Swindell
  4. rem
  5. cd sbbs
  6. make %1 %2 %3 %4 %5
  7. if errorlevel 1 goto err
  8. cd scfg
  9. make %1 %2 %3 %4 %5
  10. if errorlevel 1 goto err
  11. cd ..\addfiles
  12. make -fmakefile.bc %1 %2 %3 %4 %5
  13. if errorlevel 1 goto err
  14. cd ..\baja
  15. call make.cmd %1 %2 %3 %4 %5
  16. if errorlevel 1 goto err
  17. cd ..\delfiles
  18. make -fmakefile.bc %1 %2 %3 %4 %5
  19. if errorlevel 1 goto err
  20. cd ..\dupefind
  21. make -fmakefile.bc %1 %2 %3 %4 %5
  22. if errorlevel 1 goto err
  23. cd ..\echo
  24. make %1 %2 %3 %4 %5
  25. if errorlevel 1 goto err
  26. cd ..\execsbbs
  27. call make.cmd %1 %2 %3 %4 %5
  28. if errorlevel 1 goto err
  29. cd ..\filelist
  30. make -fmakefile.bc %1 %2 %3 %4 %5
  31. if errorlevel 1 goto err
  32. cd ..\install
  33. make %1 %2 %3 %4 %5
  34. if errorlevel 1 goto err
  35. cd ..\node
  36. call make.cmd %1 %2 %3 %4 %5
  37. if errorlevel 1 goto err
  38. cd ..\slog
  39. call make.cmd %1 %2 %3 %4 %5
  40. if errorlevel 1 goto err
  41. cd ..\smb
  42. cd chksmb
  43. make %1 %2 %3 %4 %5
  44. if errorlevel 1 goto err
  45. cd ..\fixsmb
  46. make %1 %2 %3 %4 %5
  47. if errorlevel 1 goto err
  48. cd ..\smbutil
  49. make -fmakefile.bc %1 %2 %3 %4 %5
  50. if errorlevel 1 goto err
  51. cd ..
  52. cd ..\smbactiv
  53. make -fmakefile.bc %1 %2 %3 %4 %5
  54. if errorlevel 1 goto err
  55. rem End of makes
  56. cd ..\..
  57. goto end
  58. :err
  59. rem Error occurred
  60. echo.
  61. echo There was an error!
  62. echo.
  63. :end
  64.