home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c004 / 4.ddi / NETBIOS / MAKESRVX.BAT < prev    next >
Encoding:
DOS Batch File  |  1989-04-18  |  683 b   |  30 lines

  1. echo off
  2.  
  3. rem check syntax
  4. if XX%1==XX goto usage
  5. if %1==S goto small
  6. if %1==s goto small
  7. if %1==C goto compact
  8. if %1==c goto compact
  9. echo ************
  10. echo SYNTAX ERROR
  11. echo ************
  12. :usage
  13. echo Program to build server for c-tree under IBM PC-NET compatible networks
  14. echo *****:
  15. echo usage: MAKESRVX {S or C}
  16. echo *****:
  17. echo where S=small & C=compact
  18. echo The server (CTSRVRX.EXE) is created in
  19. echo directory nSRV (eg. SSRV for small model).
  20. goto done
  21. :small
  22. if not exist SSRV\*.* md SSRV
  23. make D=SSRV CM=/AS AM=SMALL makesrvx.mak
  24. goto done
  25. :compact
  26. if not exist CSRV\*.* md CSRV
  27. make D=CSRV CM=/AC AM=COMPACT CP=/CP:1 makesrvx.mak
  28. goto done
  29. :done
  30.