MAKEFILE
资源名称:MSDN_VC98.zip [点击查看]
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:
Windows编程
开发平台:
Visual C++
- #+---------------------------------------------------------------------------
- #
- # Microsoft Windows
- # Copyright (C) Microsoft Corporation, 1994-1997.
- #
- # File: makefile
- #
- #----------------------------------------------------------------------------
- !include <olesampl.mak>
- #
- # builds the WINHLPRS.LIB library
- #
- # used by MFract and DFView
- #
- OLEFLAGS = -I ..idl
- all: winhlprs.lib
- clean:
- -del *.lib
- -del *.obj
- cwindow.obj: cwindow.cxx cwindow.h
- $(cc) $(cvars) $(cflags) $(UFLAGS) $(cdebug) $(OLEFLAGS) cwindow.cxx
- cdialog.obj: cdialog.cxx cdialog.h
- $(cc) $(cvars) $(cflags) $(UFLAGS) $(cdebug) $(OLEFLAGS) cdialog.cxx
- strmhelp.obj: strmhelp.cxx strmhelp.h
- $(cc) $(cvars) $(cflags) $(UFLAGS) $(cdebug) $(OLEFLAGS) strmhelp.cxx
- winhlprs.lib: cwindow.obj cdialog.obj strmhelp.obj
- lib -out:winhlprs.lib cwindow.obj cdialog.obj strmhelp.obj