home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / cprog / ctrlclib.zip / MSC5.MAK < prev    next >
Text File  |  1990-12-18  |  424b  |  19 lines

  1. # MSC5.MAK for The CTRL+C LIBRARY - MAKEFILE
  2. # Microsoft Ver. 5.1
  3.  
  4. DRIVE   = c:
  5.  
  6. MODEL   = S      # <-----change this for different memory model
  7.  
  8. CLIB    = $(DRIVE)\$(MODEL)msc5cl.lib  graphics.lib
  9. INCLUDE = $(DRIVE)\tc20\include
  10.  
  11. target:  cldemo.exe bootdemo.exe
  12.  
  13. cldemo.exe:  
  14.    cl -A$(MODEL) -DMSC5 -I$(INCLUDE) $(CLIB) cldemo.c
  15.  
  16. bootdemo.exe:
  17.    cl -A$(MODEL) -DMSC5 -I$(INCLUDE) $(CLIB) bootdemo.c
  18.  
  19.