home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / compiler / miracl / mc.bat < prev    next >
DOS Batch File  |  1993-01-17  |  347b  |  23 lines

  1. @echo off
  2.  
  3. if %linker%x == x goto deflink
  4. goto compile
  5.  
  6. :deflink
  7. set linker=link
  8.  
  9. :compile
  10. if exist %1.c goto compileok
  11. if x%1 == x goto compileok
  12. echo Source file %1.c does not exist
  13. goto finish
  14.  
  15. :compileok
  16. set lib=\cc
  17. set include=\cc\include
  18. cc %1 %2 %3 %4 %5 %6
  19. if errorlevel 1 goto finish
  20.  
  21. %linker% %1,%1,%1,ccl;
  22. :finish
  23.