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 WINHLPRS.LIB library
  12. #
  13. #       used by MFract and DFView
  14. #
  15. OLEFLAGS = -I ..idl
  16. all: winhlprs.lib
  17. clean:
  18.     -del *.lib
  19.     -del *.obj
  20. cwindow.obj: cwindow.cxx cwindow.h
  21.     $(cc) $(cvars) $(cflags) $(UFLAGS) $(cdebug) $(OLEFLAGS) cwindow.cxx
  22. cdialog.obj: cdialog.cxx cdialog.h
  23.     $(cc) $(cvars) $(cflags) $(UFLAGS) $(cdebug) $(OLEFLAGS) cdialog.cxx
  24. strmhelp.obj: strmhelp.cxx strmhelp.h
  25.     $(cc) $(cvars) $(cflags) $(UFLAGS) $(cdebug) $(OLEFLAGS) strmhelp.cxx
  26. winhlprs.lib: cwindow.obj cdialog.obj strmhelp.obj
  27.     lib -out:winhlprs.lib cwindow.obj cdialog.obj strmhelp.obj