home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / com / activedocument / range / makefile < prev    next >
Makefile  |  1996-10-23  |  851b  |  35 lines

  1. Proj = Range
  2.  
  3. # These are "extra" libs beyond the standard set that inetsdk.mak will
  4. #  append to the libs set
  5.  
  6. libs=urlmon.lib wininet.lib uuid.lib 
  7.  
  8. # pull in the master SDK makefile that defines all of the macros
  9. #  and all of the build rules
  10.  
  11. console=1
  12.  
  13. !include <inetsdk.mak>
  14.  
  15. all: $(ObjDir)\$(Proj).Exe
  16.  
  17. # itemize all of the required Object files
  18.  
  19. Objs=   $(ObjDir)\Range.Obj    \
  20.         $(ObjDir)\Cache.Obj    \
  21.         $(ObjDir)\RecvBuf.Obj \
  22.         $(ObjDir)\Callback.Obj \
  23.         $(ObjDir)\Download.Obj \
  24.  
  25. Includes = Range.h Callback.hpp RecvBuf.hpp
  26.  
  27. All: $(ObjDir)\$(Proj).Exe
  28.  
  29. $(ObjDir)\$(Proj).Exe : $(Objs)
  30.  
  31. $(ObjDir)\Cache.Obj     : $(@B).Cpp $(Includes)
  32. $(ObjDir)\RecvBuf.Obj   : $(@B).Cpp $(Includes)
  33. $(ObjDir)\Download.Obj  : $(@B).Cpp $(Includes)
  34. $(ObjDir)\Callback.Obj  : $(@B).Cpp $(Includes)
  35.