home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / C / DL.ZIP / MC.BAT < prev    next >
Encoding:
DOS Batch File  |  1996-11-30  |  209 b   |  16 lines

  1. if %linker%x == x goto deflink
  2. goto compile
  3.  
  4. :deflink
  5. set linker=link
  6.  
  7. :compile
  8. del %1.exe
  9. del %1.obj
  10.  
  11. set lib=c:\cc
  12. set include=c:\cc\include
  13. cc %1 %2 %3 %4 %5 %6 %7 %8
  14.  
  15. %linker% %1,%1,%1,ccl;
  16.