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

  1. @echo off
  2. rem Link a program compiled with MetaWare High C/C++
  3. rem     %1    Name of .OBJ file, and output .EXE file, with no extension
  4. rem    %2-%9    Optional additional command-line arguments 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:\hc386\small;c:\phar386\lib
  11. 386link -exe %1.exe @hc386.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:  highclnk exefile objfile [objfiles switches]
  17. :exit
  18.