home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c100 / 2.ddi / GCOBJECT.ZIP / MAKEFILE.ZTC < prev    next >
Encoding:
Text File  |  1990-07-09  |  506 b   |  20 lines

  1. # makefile for testgc.exe, a demo of the gcobject and gcstring classes
  2. # the compact or large memory model is recommended.
  3. # for Zortech make, use:
  4. #    make -fmakefile.ztc
  5.  
  6. testgc.exe: testgc.obj gcstring.obj gcobject.obj
  7.     ztc -mc testgc.obj gcstring.obj gcobject.obj
  8.  
  9. testgc.obj: testgc.cpp gcstring.hpp gcobject.hpp
  10.     ztc -mc -c testgc.cpp
  11.  
  12. gcstring.obj: gcobject.cpp gcstring.hpp gcobject.hpp
  13.     ztc -mc -c gcstring.cpp
  14.  
  15. gcobject.obj: gcobject.cpp gcobject.hpp
  16.     ztc -mc -c gcobject.cpp
  17.  
  18.  
  19.  
  20.