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 / vlistvw / makefile < prev    next >
Makefile  |  1997-05-28  |  640b  |  30 lines

  1. Proj = VListVw
  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. # pull in the master SDK makefile that defines all of the macros
  9. #  and all of the build rules
  10.  
  11. !include <inetsdk.mak>
  12.  
  13. # itemize all of the required Object files
  14.  
  15. Objs =   $(ObjDir)\$(Proj).Obj  \
  16.          $(ObjDir)\$(Proj).Res
  17.  
  18. # itemize all of the required include files
  19.  
  20. Includes =  resource.h
  21.  
  22. All: $(ObjDir)\$(Proj).Exe
  23.  
  24. $(ObjDir)\$(Proj).res   : $(@B).rc $(Includes) windows.ico disk.ico
  25.  
  26. $(ObjDir)\$(Proj).Obj   : $(@B).C $(Includes)
  27.  
  28. $(ObjDir)\$(Proj).Exe   : $(Objs)
  29.  
  30.