home *** CD-ROM | disk | FTP | other *** search
/ Mega A/V / mega_av.zip / mega_av / GRAPHUTL / FRASR172.ZIP / MAKEFRAC.BAT < prev    next >
DOS Batch File  |  1991-12-01  |  847b  |  22 lines

  1. @echo off
  2. rem ** The SET commands are here to ensure no options are accidentally set
  3. set CL=
  4. set MASM=
  5. set LINK=
  6.  
  7. rem ** Use next two for C6.00A
  8. nmk "CC=cl" "AS=masm" "LINKER=link" "OptT=/Oecilgtaz /Gs" frachelp.mak
  9. if errorlevel 1 goto exit
  10. nmk "CC=cl" "AS=masm" "LINKER=link" "OptT=/DC6 /Oecilgtaz /Gs" "OptS=/DC6 /Osleazcg /Gs" fractint.mak
  11.  
  12. rem ** Use next two for C5.1
  13. rem make "CC=cl" "AS=masm" "LINKER=link" "OptT=/Oait" frachelp.mak
  14. rem if errorlevel 1 goto exit
  15. rem make "CC=cl" "AS=masm" "LINKER=link" "OptT=/Oait /Gs" "OptS=/Oais /Gs" fractint.mak
  16.  
  17. rem ** Use for QuickC 2.51 where qcl is both the C compiler and the assembler
  18. rem nmake "CC=qcl" "AS=qcl" "LINKER=qlink" "OptT=" frachelp.mak
  19. rem if errorlevel 1 goto exit
  20. rem nmake "CC=qcl" "AS=qcl" "LINKER=qlink" "OptT=/Olt /Gs" "OptS=/Ols /Gs" fractint.mak
  21. :exit
  22.