home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ctb_291.zip / source / makefile < prev    next >
Makefile  |  1996-08-14  |  536b  |  28 lines

  1. ##
  2. ## Module   :MAKEFILE
  3. ##
  4. ## Copyright (C) Sergey I. Yevtushenko
  5. ##
  6.  
  7.  
  8. INCLUDE   = ..\include
  9. OUTPUT    = ..\exe
  10. .path.h   = $(INCLUDE)
  11. .path.hpp = $(INCLUDE)
  12. .path.exe = $(OUTPUT)
  13.  
  14. OBJS = ctb.obj stream.obj tstream.obj table.obj
  15. CC   = hc -O7 -I..\include -Hpfnoflt -486
  16.  
  17. .cpp.obj :
  18.         $(CC) -c {$< }
  19.  
  20. ctb.exe : $(OBJS)
  21.         -$(CC) -o $(OUTPUT)\ctb.exe $(OBJS)
  22.  
  23. ctb.obj    : dlc.h     ctb.cpp
  24. stream.obj : stream.hpp stream.cpp
  25. tstream.obj: dlc.h      tstream.cpp
  26. table.obj  : table.h    table.cpp
  27.  
  28.