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 Card Control
  13. #
  14. crtmt = 1
  15. USE_BASECTL = 1
  16. Proj = Card
  17. # pull in the master SDK makefile that Defines all of the macros
  18. #  and all of the build rules
  19. !include <INetSDK.Mak>
  20. all: $(ObjDir)$(Proj).Ocx Register
  21. # itemize all of the required Object files
  22. Objs=$(ObjDir)CatHelp.Obj  
  23.      $(ObjDir)Guids.Obj    
  24.      $(ObjDir)Card.Obj     
  25.      $(ObjDir)CardCtl.Obj  
  26.      $(ObjDir)CardDraw.Obj 
  27.      $(ObjDir)CardPPG.Obj  
  28.      $(ObjDir)$(Proj).Res
  29. # special case the odl file since the output header has a special name
  30. $(Proj)Interfaces.h: $(Proj).Odl
  31.   mktyplib /DWIN32 -I..Include /h $(Proj)Interfaces.h /tlb $(Proj).Tlb $(Proj).Odl
  32. # and finally, just Define the dependencies
  33. $(ObjDir)$(Proj).Ocx: $(Objs)
  34. $(ObjDir)Guids.Obj: $(@B).Cpp $(Proj)Interfaces.h
  35. cardctl.cpp: cardctl.h carddraw.h
  36. carddraw.cpp: carddraw.h