home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l350 / 2.ddi / BIN / MSCBLD.BAT < prev    next >
Encoding:
DOS Batch File  |  1993-01-28  |  270 b   |  12 lines

  1. @echo off
  2. rem Compile and link a program with Microsoft 32-bit C/C++
  3. rem    %1    Name of .C and .EXE file, without extension
  4.  
  5. if x%1==x goto usage
  6. command/e:1024/c mscc.bat %1
  7. command/e:1024/c msclnk.bat %1 %1
  8. goto exit
  9. :usage
  10. echo Usage:  mscbld sourcefile
  11. :exit
  12.