MAKEFILE
资源名称:MSDN_VC98.zip [点击查看]
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:
Windows编程
开发平台:
Visual C++
- #+---------------------------------------------------------------------------
- #
- # Microsoft Windows
- # Copyright (C) Microsoft Corporation, 1994-1997.
- #
- # File: makefile
- #
- #----------------------------------------------------------------------------
- !include <olesampl.mak>
- #
- # Makefile for OLE Sample MFract
- #
- # builds PLASMA.DLL: the Plasma Cloud Fractal engine
- #
- OLEFLAGS = -I ....idl -I ......winhlprs
- LINK = $(link)
- LINKFLAGS = $(linkdebug) $(dlllflags)
- RCFLAGS = -DWIN32
- OBJS = plasma.obj plasmaob.obj
- LIBS = $(olelibsdll) ....idlfguids.lib ......winhlprswinhlprs.lib
- all: ....binplasma.dll
- clean:
- -del *.obj
- -del *.map
- -del *.exp
- -del plasma.res
- -del plasma.dll
- -del plasma.lib
- -del ....binplasma.dll
- plasma.obj: plasma.cxx
- ....idlfrcngn.h
- ....idlfrhost.h
- ....idlplasmcid.h
- ......winhlprscdialog.h
- plasma.h
- $(cc) $(cvars) $(cflags) $(UFLAGS) $(cdebug) $(OLEFLAGS) plasma.cxx
- plasmaob.obj: plasmaob.cxx
- ....idlfrcngn.h
- ....idlfrhost.h
- ....idlpalsize.h
- ....idlplasmcid.h
- ......winhlprscdialog.h
- plasma.h
- $(cc) $(cvars) $(cflags) $(UFLAGS) $(cdebug) $(OLEFLAGS) plasmaob.cxx
- plasma.res: plasma.rc plasma.dlg plasma.h
- rc $(RCFLAGS) -r -fo$@ plasma.rc
- plasma.dll: $(OBJS) plasma.res
- $(LINK) @<<
- $(LINKFLAGS)
- -out:$@
- -map:$*.map
- $(OBJS)
- plasma.res
- $(LIBS)
- <<
- ....binplasma.dll: plasma.dll
- copy plasma.dll ....bin