home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1998 September / PCO_0998.ISO / filesbbs / dos / sbbs_src.exe / MAKEALL.BAT < prev    next >
Encoding:
DOS Batch File  |  1997-04-26  |  2.6 KB  |  122 lines

  1. @echo off
  2. rem
  3. rem Makes all Borland for DOS 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. make -DW32 %1 %2 %3 %4 %5
  9. if errorlevel 1 goto err
  10. cd scfg
  11. make %1 %2 %3 %4 %5
  12. if errorlevel 1 goto err
  13. make -DDOS32 %1 %2 %3 %4 %5
  14. if errorlevel 1 goto err
  15. cd ..\addfiles
  16. make -fmakefile.bc %1 %2 %3 %4 %5
  17. if errorlevel 1 goto err
  18. cd ..\allusers
  19. call make.bat %1 %2 %3 %4 %5 
  20. if errorlevel 1 goto err
  21. cd ..\baja
  22. call make.bat %1 %2 %3 %4 %5
  23. if errorlevel 1 goto err
  24. cd ..\delfiles
  25. make -fmakefile.bc %1 %2 %3 %4 %5
  26. if errorlevel 1 goto err
  27. cd ..\dstsedit
  28. call make.bat %1 %2 %3 %4 %5
  29. if errorlevel 1 goto err
  30. cd ..\dupefind
  31. make -fmakefile.bc %1 %2 %3 %4 %5
  32. if errorlevel 1 goto err
  33. cd ..\echo
  34. make %1 %2 %3 %4 %5
  35. if errorlevel 1 goto err
  36. cd ..\execdos
  37. call make.bat %1 %2 %3 %4 %5
  38. if errorlevel 1 goto err
  39. cd ..\execsbbs
  40. call make.bat %1 %2 %3 %4 %5
  41. if errorlevel 1 goto err
  42. cd ..\filelist
  43. make -fmakefile.bc %1 %2 %3 %4 %5
  44. if errorlevel 1 goto err
  45. cd ..\install
  46. make %1 %2 %3 %4 %5
  47. if errorlevel 1 goto err
  48. cd ..\mlabels
  49. call make.bat %1 %2 %3 %4 %5
  50. if errorlevel 1 goto err
  51. cd ..\node
  52. call make.bat %1 %2 %3 %4 %5
  53. if errorlevel 1 goto err
  54. cd ..\qwknodes
  55. call make.bat %1 %2 %3 %4 %5
  56. if errorlevel 1 goto err
  57. cd ..\sbj
  58. make %1 %2 %3 %4 %5 
  59. if errorlevel 1 goto err
  60. cd ..\sbl
  61. make %1 %2 %3 %4 %5 
  62. if errorlevel 1 goto err
  63. call makeio.bat %1 %2 %3 %4 %5
  64. if errorlevel 1 goto err
  65. cd ..\scb
  66. make %1 %2 %3 %4 %5 
  67. if errorlevel 1 goto err
  68. make -fscbcfg.mak %1 %2 %3 %4 %5 
  69. if errorlevel 1 goto err
  70. cd ..\slog
  71. call make.bat %1 %2 %3 %4 %5
  72. if errorlevel 1 goto err
  73. cd ..\smb
  74. cd chksmb
  75. make %1 %2 %3 %4 %5
  76. if errorlevel 1 goto err
  77. cd ..\fixsmb
  78. make %1 %2 %3 %4 %5
  79. if errorlevel 1 goto err
  80. cd ..\smbutil
  81. make -fmakefile.bc %1 %2 %3 %4 %5 
  82. if errorlevel 1 goto err
  83. cd ..
  84. cd ..\smbactiv
  85. make -fmakefile.bc %1 %2 %3 %4 %5 
  86. if errorlevel 1 goto err
  87. cd ..\smm
  88. make %1 %2 %3 %4 %5 
  89. if errorlevel 1 goto err
  90. make -fsmmcfg.mak %1 %2 %3 %4 %5 
  91. if errorlevel 1 goto err
  92. call makeio.bat %1 %2 %3 %4 %5
  93. if errorlevel 1 goto err
  94. call makephot.bat  %1 %2 %3 %4 %5 
  95. if errorlevel 1 goto err
  96. call makeutil.batn %1 %2 %3 %4 %5 
  97. if errorlevel 1 goto err
  98. cd ..\uti
  99. make %1 %2 %3 %4 %5 
  100. if errorlevel 1 goto err
  101. rem
  102. rem Non-Synchronet specific stuff
  103. rem
  104. cd ..\
  105. cd ..\tone
  106. call make.bat %1 %2 %3 %4 %5 
  107. if errorlevel 1 goto err
  108. cd ..\stp
  109. call make.bat %1 %2 %3 %4 %5 
  110. if errorlevel 1 goto err
  111. rem
  112. rem End of makes
  113. rem
  114. cd ..
  115. goto end
  116. :err
  117. rem Error occurred
  118. echo.
  119. echo There was an error!
  120. echo.
  121. :end
  122.