home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c100 / 2.ddi / GCOBJECT.ZIP / MAKEFILE.TCC < prev    next >
Encoding:
Text File  |  1990-07-09  |  581 b   |  24 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 Borland make, use:
  4. #    make -fmakefile.tcc
  5.  
  6. !if !$d(COMPILER)
  7. COMPILER=tcc
  8. !endif
  9.  
  10. testgc.exe: testgc.obj gcstring.obj gcobject.obj
  11.     $(COMPILER) -mc testgc.obj gcstring.obj gcobject.obj
  12.  
  13. testgc.obj: testgc.cpp gcstring.hpp gcobject.hpp
  14.     $(COMPILER) -mc -c testgc.cpp
  15.  
  16. gcstring.obj: gcobject.cpp gcstring.hpp gcobject.hpp
  17.     $(COMPILER) -mc -c gcstring.cpp
  18.  
  19. gcobject.obj: gcobject.cpp gcobject.hpp
  20.     $(COMPILER) -mc -c gcobject.cpp
  21.  
  22.  
  23.  
  24.