MAKEFILE
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

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