home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c100 / 1.ddi / OOPWLD.ZIP / BINTREE / MAKEFILE < prev    next >
Encoding:
Text File  |  1990-06-11  |  295 b   |  13 lines

  1. # makefile for OOPWT Binary Tree example
  2.  
  3. .cpp.obj:
  4.     tcc -c $*.cpp
  5.  
  6. fulltest.exe : fulltest.obj fullbin.obj smap.obj
  7.     tcc fulltest.obj fullbin.obj smap.obj
  8.  
  9. fulltest.obj : fullbin.hpp smap.hpp fulltest.cpp
  10. fullbin.obj : fullbin.hpp smap.hpp fullbin.cpp
  11. smap.obj : smap.cpp smap.hpp
  12.  
  13.