home *** CD-ROM | disk | FTP | other *** search
- echo off
- echo Layout MAKE Batch File for Microsoft C
- rem
- echo Use this Batch File to Compile your Layout-created Microsoft C programs.
- echo If you use any of the BlackBoxes that come with Layout, modify the
- echo Link command line in this file to say:
- echo "link %1+\layout\blackbox\matrixc,,,\layout\language\c\laymsc.lib"
- rem
- echo on
-
- CL /AL /c %1.c
- if errorlevel 1 goto exit
- link %1,,,\layout\language\c\lay_msc.lib
- :exit