home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / DICEC-1.DMS / in.adf / s / startup-dice < prev    next >
Encoding:
AmigaDOS Script File  |  1993-01-24  |  861 b   |  37 lines

  1. .key arg/A
  2. .bra {
  3. .ket }
  4.  
  5. ;*********************************************
  6. ;       GENERAL DICE SETUP             *
  7. ;*********************************************
  8. ;
  9. ; -f option only applies to 1.3 but doesn't hurt under 2.0
  10. ; -2.0 option set default to use the 2.0 includes and libraries.
  11. ;     (you can still compile 1.3 programs with the 2.0 includes/libs
  12. ;      as long as you do not use any 2.0-specific calls)
  13.  
  14. assign DCC: {arg}
  15. assign DLIB: DCC:DLIB
  16. assign DINCLUDE: DCC:INCLUDE
  17. assign DTMP: t:
  18. setenv DCCOPTS "-f -2.0 -Tt:"
  19.  
  20. path ADD DCC:BIN
  21.  
  22.  
  23. resident >nil: force
  24. if WARN
  25. ;*********************************************
  26. ;           1.3 SPECIFIC SETUP         *
  27. ;*********************************************
  28. else
  29.  
  30. ;*********************************************
  31. ;           2.0 SPECIFIC SETUP         *
  32. ;*********************************************
  33. assign libs: DCC:libs ADD
  34. endif
  35.  
  36.  
  37.