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

Windows编程

开发平台:

Visual C++

  1. #+---------------------------------------------------------------------------
  2. #
  3. #  Microsoft Windows
  4. #  Copyright (C) Microsoft Corporation, 1994 - 1996
  5. #
  6. #  File:        makefile
  7. #
  8. #       Makefile for sample implemention of IMallocSpy
  9. #
  10. #----------------------------------------------------------------------------
  11. !include <olesampl.mak>
  12. all : cmallspy.lib test.exe
  13. clean:
  14.         -del cmallspy.obj
  15.         -del cmallspy.lib
  16. cmallspy.obj : cmallspy.cxx cmallspy.hxx
  17.     $(cc) $(cvars) $(cflags) $(UFLAGS) $(cdebug) $(OLEFLAGS) $(CFLAGS) cmallspy.cxx
  18. test.obj : test.cxx cmallspy.hxx
  19.     $(cc) $(cvars) $(cflags) $(UFLAGS) $(cdebug) $(OLEFLAGS) $(CFLAGS) test.cxx
  20. cmallspy.lib : cmallspy.obj
  21.     lib $(LFLAGS)            
  22.         -OUT:cmallspy.lib    
  23.         -DEBUGTYPE:both      
  24.         cmallspy.obj
  25. test.exe:  test.obj cmallspy.lib
  26.   $(link) $(linkdebug) $(conflags) -machine:$(CPU) -out:$*.exe $** $(olelibs) $(conlibsmt)