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

  1. @echo off
  2. rem Link a program compiled with Microsoft 32-bit C/C++
  3. rem     %1    Name of output .EXE file, with no extension
  4. rem    %2-%9    Input object files and switches for link
  5. rem Set LIB variable as appropriate for your installation
  6.  
  7. if x%1==x goto usage
  8. if x%2==x goto usage
  9. set savelib=%lib%
  10. set lib=c:\mstools\lib;c:\phar386\lib
  11. 386link -exe %1.exe @msc386.lnk -nomap %2 %3 %4 %5 %6 %7 %8 %9 
  12. set lib=%savelib%
  13. set savelib=
  14. goto exit
  15. :usage
  16. echo Usage:  msclnk exefile objfile [objfiles switches]
  17. :exit
  18.