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

  1. # TCXX.MAK for The CTRL+C LIBRARY - MAKEFILE
  2. # Borland Turbo-C Ver. 2.0 
  3.  
  4. DRIVE   = c:
  5.  
  6. MODEL   = s         # <-----change this for different memory model
  7.  
  8. CLIB    = $(DRIVE)\$(MODEL)tcxxcl.lib  graphics.lib
  9. INCLUDE = $(DRIVE)\tcxx\include
  10.  
  11. target:  cldemo.exe bootdemo.exe
  12.  
  13. cldemo.exe:  
  14.    tcc -m$(MODEL) -DTCXX -I$(INCLUDE) -F$(CLIB) cldemo.c
  15.  
  16. bootdemo.exe:
  17.    tcc -m$(MODEL) -DTCXX -I$(INCLUDE) -F$(CLIB) bootdemo.c
  18.  
  19.