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 / framer / makefile < prev    next >
Makefile  |  1997-05-28  |  1KB  |  46 lines

  1. dll = 1
  2.  
  3. Proj = Framer
  4.  
  5. # These are "extra" libs beyond the standard set that inetsdk.mak will
  6. #  append to the libs set
  7.  
  8. libs=uuid.lib 
  9.  
  10. !ifdef UNICODE
  11. cDefines = -DUNICODE -D_UNICODE
  12. !endif
  13.  
  14. # pull in the master SDK makefile that defines all of the macros
  15. #  and all of the build rules
  16.  
  17. !include <inetsdk.mak>
  18.  
  19. all: $(ObjDir)\$(Proj).Exe
  20.  
  21.  
  22. # itemize all of the required Object files
  23.  
  24. Objs=   $(ObjDir)\$(Proj).Obj  \
  25.         $(ObjDir)\$(Proj).Res  \
  26.         $(ObjDir)\IAdvSink.Obj \
  27.         $(ObjDir)\ICliSite.Obj \
  28.         $(ObjDir)\IDocSite.Obj \
  29.         $(ObjDir)\IIpSite.Obj  \
  30.         $(ObjDir)\Site.Obj
  31.  
  32. Includes    = $(Proj).h site.h resource.h
  33.  
  34. All: $(ObjDir)\$(Proj).Exe
  35.  
  36. $(ObjDir)\$(Proj).Exe : $(Objs)
  37.  
  38. $(ObjDir)\$(Proj).res   : $(@B).rc $(Includes) $(Proj).Ico
  39.  
  40. $(ObjDir)\$(TARGET).Obj : $(@B).Cpp $(Includes)
  41. $(ObjDir)\IAdvSink.Obj  : $(@B).Cpp $(Includes)
  42. $(ObjDir)\ICliSite.Obj  : $(@B).Cpp $(Includes)
  43. $(ObjDir)\IDocSite.Obj  : $(@B).Cpp $(Includes)
  44. $(ObjDir)\IIpSite.Obj   : $(@B).Cpp $(Includes)
  45. $(ObjDir)\Site.Obj      : $(@B).Cpp $(Includes)
  46.