home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l010 / 6.ddi / C6.ARC / MAKE_MSC.BAT next >
Encoding:
DOS Batch File  |  1989-11-15  |  440 b   |  15 lines

  1. echo off
  2. echo Layout MAKE Batch File for Microsoft C
  3. rem
  4. echo Use this Batch File to Compile your Layout-created Microsoft C programs.
  5. echo If you use any of the BlackBoxes that come with Layout, modify the
  6. echo Link command line in this file to say:
  7. echo "link %1+\layout\blackbox\matrixc,,,\layout\language\c\laymsc.lib"
  8. rem
  9. echo on
  10.  
  11. CL /AL /c %1.c
  12. if errorlevel 1 goto exit
  13. link %1,,,\layout\language\c\lay_msc.lib
  14. :exit
  15.