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

Windows编程

开发平台:

Visual C++

  1. #+---------------------------------------------------------------------------
  2. #
  3. #  Microsoft Windows
  4. #  Copyright (C) Microsoft Corporation, 1994-1997.
  5. #
  6. #  File:        makefile
  7. #
  8. #----------------------------------------------------------------------------
  9. !include <olesampl.mak>
  10. #
  11. #       builds the sdkutil.LIB library
  12. #
  13. OLEFLAGS =
  14. all: sdkutil.lib
  15. clean:
  16.     -del *.lib
  17.     -del *.obj
  18. stablize.obj: stablize.cxx
  19.     $(cc) $(cvars) $(cflags) $(UFLAGS) $(cdebug) $(OLEFLAGS) stablize.cxx
  20. altassrt.obj: altassrt.cxx
  21.     $(cc) $(cvars) $(cflags) $(UFLAGS) $(cdebug) $(OLEFLAGS) altassrt.cxx
  22. sdkutil.lib: altassrt.obj stablize.obj
  23.     lib -out:sdkutil.lib altassrt.obj stablize.obj
  24.     if not exist ..lib mkdir ..lib
  25.     copy sdkutil.lib ..lib
  26. # Copy the file to the VC++ Lib directory
  27.     copy sdkutil.lib $(MSVCDIR)lib