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 JULIA.DLL: the Julia Set fractal engine.
- #
- OLEFLAGS = -I ....idl -I ......winhlprs
- LINK = $(link)
- LINKFLAGS = $(linkdebug) $(dlllflags)
- RCFLAGS = -DWIN32
- OBJS = julia.obj juliaob.obj
- LIBS = $(olelibsdll) ....idlfguids.lib ......winhlprswinhlprs.lib
- all: ....binjulia.dll
- clean:
- -del *.obj
- -del *.map
- -del *.exp
- -del julia.res
- -del julia.dll
- -del julia.lib
- -del ....binjulia.dll
- julia.obj: julia.cxx
- ....idlfrcngn.h
- ....idlfrhost.h
- ....idljuliacid.h
- ....idlqudcln.h
- ....idlqudngn.h
- ......winhlprscdialog.h
- julia.h
- $(cc) $(cvars) $(cflags) $(UFLAGS) $(cdebug) $(OLEFLAGS) julia.cxx
- juliaob.obj: juliaob.cxx
- ....idlfrcngn.h
- ....idlfrhost.h
- ....idljuliacid.h
- ....idlquadcid.h
- ....idlqudcln.h
- ....idlqudngn.h
- ......winhlprscdialog.h
- ....idlpalsize.h
- ......winhlprsstrmhelp.h
- julia.h
- $(cc) $(cvars) $(cflags) $(UFLAGS) $(cdebug) $(OLEFLAGS) juliaob.cxx
- julia.res: julia.rc julia.h
- rc $(RCFLAGS) -r -fo$@ julia.rc
- julia.dll: $(OBJS) julia.res
- $(LINK) @<<
- $(LINKFLAGS)
- -export:DllGetClassObject,private
- -export:DllCanUnloadNow,private
- -out:$@
- -map:$*.map
- $(OBJS)
- julia.res
- $(LIBS)
- <<
- ....binjulia.dll: julia.dll
- copy julia.dll ....bin