home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / mslang / fxexpand / example / bccbuild.bat next >
DOS Batch File  |  1993-09-01  |  470b  |  13 lines

  1. @echo off
  2.  
  3. rem This batch file builds the example program
  4. rem using the Borland C compiler.  It assumes that the
  5. rem INCLUDE and LIB environment variables are set properly for Borland C.
  6.  
  7. rem The model used here is the Small model.
  8. rem To change the model, use -mX where X is one of m, c, l
  9. rem for Medium, Compact, and Large respectively and then
  10. rem use the msc\Xfexpand.lib where X is also M, C, L.
  11.  
  12. bcc -I..\include -ms example2.c ..\libbcc\Sfexpand.lib
  13.