home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / winui / commctrl / rebar / makefile < prev    next >
Encoding:
Makefile  |  1997-12-11  |  650 b   |  31 lines

  1. Proj = Rebar
  2.  
  3. # These are "extra" libs beyond the standard set that inetsdk.mak will
  4. #  append to the libs set
  5.  
  6. libs=comctl32.lib
  7.  
  8. _WIN32_IE = 0x0400
  9.  
  10. # pull in the master SDK makefile that defines all of the macros
  11. #  and all of the build rules
  12.  
  13. !include <inetsdk.mak>
  14.  
  15. # itemize all of the required Object files
  16.  
  17. Objs =   $(ObjDir)\$(Proj).Obj  \
  18.          $(ObjDir)\$(Proj).Res
  19.  
  20. # itemize all of the required include files
  21.  
  22. Includes =  resource.h
  23.  
  24. All: $(ObjDir)\$(Proj).Exe
  25.  
  26. $(ObjDir)\$(Proj).res   : $(@B).rc $(Includes) MainIcon.Ico
  27.  
  28. $(ObjDir)\$(Proj).Obj   : $(@B).C $(Includes)
  29.  
  30. $(ObjDir)\$(Proj).Exe   : $(Objs)
  31.