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

Windows编程

开发平台:

Visual C++

  1. #=--------------------------------------------------------------------------=
  2. # Makefile
  3. #=--------------------------------------------------------------------------=
  4. # Copyright 1995 - 1997 Microsoft Corporation.  All Rights Reserved.
  5. #
  6. # THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF 
  7. # ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO 
  8. # THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A 
  9. # PARTICULAR PURPOSE.
  10. #=--------------------------------------------------------------------------=
  11. #
  12. # Builds the WebImage Control
  13. #
  14. USE_BASECTL = 1
  15. Proj = WImg
  16. # pull in the master SDK makefile that Defines all of the macros
  17. #  and all of the build rules
  18. !include <INetSDK.Mak>
  19. all: $(ObjDir)$(Proj).Ocx Register
  20. # itemize all of the required Object files
  21. Objs=$(ObjDir)CatHelp.Obj 
  22.      $(ObjDir)DibCls.Obj  
  23.      $(ObjDir)Guids.Obj   
  24.      $(ObjDir)WImg.Obj    
  25.      $(ObjDir)WImgCtl.Obj 
  26.      $(ObjDir)WImgPPG.Obj 
  27.      $(ObjDir)$(Proj).Res
  28. # special case the odl file since the output header has a special name
  29. $(Proj)Interfaces.h: $(Proj).Odl
  30.   mktyplib /DWIN32 -I..BaseCtlInclude /h $(Proj)Interfaces.h /tlb $(Proj).Tlb $(Proj).Odl
  31. # and finally, just Define the dependencies
  32. $(ObjDir)$(Proj).Ocx: $(Objs)
  33. $(ObjDir)Guids.Obj: $(@B).Cpp $(Proj)Interfaces.h