home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1993 #2 / Image.iso / clipper / star201.zip / SC201UPG.EXE / SETDEFS.BAT < prev    next >
DOS Batch File  |  1993-04-28  |  2KB  |  51 lines

  1. @echo off
  2. cls
  3.  
  4.  
  5. : CAVEAT: This batch file SETs some environment variables. If you
  6. :         do not have enough sapce left in the environment, your
  7. :         results will be unpredicatable.
  8. :
  9. :         You can increase the environment size by using the SHELL
  10. :         command in your CONFIG.SYS, ie:
  11. :
  12. :             SHELL=C:\DOS\COMMAND.COM C:\DOS\ /E:2000 /p
  13.  
  14.  
  15.  
  16. : ────────────────────────────────────────────────────────────────────────────
  17. :       Change Yours Paths Here...
  18. : ────────────────────────────────────────────────────────────────────────────
  19.  
  20. : Save some starting values
  21. :SET saveinclude=%include%
  22. SET savedircmd=%dircmd%
  23. SET rmake=
  24.  
  25.  
  26. : This is where you want the OBJ files to go during the library
  27. : creation process. If you have a large enough RAM disk, specify it
  28. : here, or else point at a physical drive which has space available.
  29. :
  30. : WARNING ABOUT USING A RAM DISK:
  31. : -------------------------------
  32. :
  33. : A *lot* of files are created in the COMPLIB process. If you already
  34. : have a lot of files on your RAM disk, you may exceed the default number
  35. : of directory entries. If this is the case, check your docs for the
  36. : RAM disk, they typically have a way to specify maximum number of files.
  37. :
  38. : If you do exceed the number of files, you'll see the message
  39. : "file creation error" as COMPLIB runs.
  40. SET workdrive=e:\
  41.  
  42.  
  43. : This is the subdirectory which contains the source
  44. : code for the support functions (ie: SCNTXPOS.PRG, YNCONF.PRG, etc...)
  45. SET funcs=d:\object\funcs\
  46.  
  47.  
  48. : This is the subdirectory which contains the class
  49. : defintion source code (ie: WINDOW.PRG, TBWIN.PRG, etc...)
  50. SET classes=d:\object\
  51.