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

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