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

Windows编程

开发平台:

Visual C++

  1. Proj = DOServer
  2. # pull in the master SDK makefile that defines all of the macros
  3. #  and all of the build rules
  4. !include <inetsdk.mak>
  5. # itemize all of the required Object files
  6. Objs =   $(ObjDir)$(Proj).Obj  
  7.          $(ObjDir)$(Proj).Res  
  8.          $(ObjDir)ClsFact.Obj 
  9.          $(ObjDir)DataObj.Obj 
  10.          $(ObjDir)OIPAObj.Obj 
  11.          $(ObjDir)OIPObj.Obj 
  12.          $(ObjDir)OleDoc.Obj 
  13.          $(ObjDir)OleDocVw.Obj 
  14.          $(ObjDir)OleObj.Obj 
  15.          $(ObjDir)PerFile.Obj 
  16.          $(ObjDir)PerStor.Obj 
  17.          $(ObjDir)Utils.Obj
  18. # itemize all of the required include files
  19. Includes =  DOServer.h 
  20.             ClsFact.h 
  21.             DataObj.h 
  22.             OIPAObj.h 
  23.             OIPObj.h 
  24.             OleDoc.h 
  25.             OleDocVw.h 
  26.             OleObj.h 
  27.             PerFile.h 
  28.             PerStor.h 
  29.             Utils.h 
  30.             resource.h
  31. All: $(ObjDir)$(Proj).Exe
  32. $(ObjDir)$(Proj).res   : $(@B).rc $(Includes) MainIcon.Ico
  33. $(ObjDir)DOServer.Obj  : $(@B).Cpp $(Includes)
  34. $(ObjDir)ClsFact.Obj   : $(@B).Cpp $(Includes)
  35. $(ObjDir)DataObj.Obj   : $(@B).Cpp $(Includes)
  36. $(ObjDir)OIPAObj.Obj   : $(@B).Cpp $(Includes)
  37. $(ObjDir)OIPObj.Obj    : $(@B).Cpp $(Includes)
  38. $(ObjDir)OleDoc.Obj    : $(@B).Cpp $(Includes)
  39. $(ObjDir)OleDocVw.Obj  : $(@B).Cpp $(Includes)
  40. $(ObjDir)OleObj.Obj    : $(@B).Cpp $(Includes)
  41. $(ObjDir)PerFile.Obj   : $(@B).Cpp $(Includes)
  42. $(ObjDir)PerStor.Obj   : $(@B).Cpp $(Includes)
  43. $(ObjDir)Utils.Obj     : $(@B).Cpp $(Includes)
  44. $(ObjDir)$(Proj).Exe   : $(Objs)