ImageVerifierCode 换一换
格式:DOCX , 页数:20 ,大小:19.10KB ,
资源ID:18783615      下载积分:3 金币
快捷下载
登录下载
邮箱/手机:
温馨提示:
快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。 如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝    微信支付   
验证码:   换一换

加入VIP,免费下载
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【https://www.bdocx.com/down/18783615.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: 微信登录   QQ登录  

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文(windows vc makefile文档格式.docx)为本站会员(b****5)主动上传,冰豆网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知冰豆网(发送邮件至service@bdocx.com或直接QQ联系客服),我们立即给予删除!

windows vc makefile文档格式.docx

1、# of MFC are created. Note: DLL=2 is to be used only from# MFCDLL.MAK, MFCOLE.MAK, or MFCDB.MAKDEBUG (defaults to 1)# If this item is 1, debugging support is compiled into# the library. If this item is 0, then debugging support# is disabled. Debug support does not include CodeView information.CODEVI

2、EW (defaults to 1 for DEBUG=1, 0 for DEBUG=0)# If this item is 1 CodeView information is compiled into# the library. You must use the /DEBUG:FULL and /DEBUGTYPE:cv link# options when linking your executable. A value of 0 indicates that# no CodeView information is to be generated.OBJ=.obj (defaults t

3、o $(MODEL)$(BASE)$(DEBUG)# This optional specification specifies where temporary OBJ files# are stored during the build process. The directory is created or# removed as necessary.OPT= (no default value)# This allows additional compiler options to be added to the build.# If more than one switch is de

4、sired, put double-quotes around the# whole OPT= argument, e.g., OPT=/J /W3.NO_PCH=1# Set this item to override the default use of precompiled headers.NO_PDB=1# Set this item to override the default use of PDB files.BROWSE=1# Set this option to build the browse database for the MFC# library. By setti

5、ng BROWSE=1, both the .SBRs and the .BSC# files will be built along with the .OBJ and .LIB files that# are part of the normal build process.BROWSEONLY=1# Set this option to build the browse files without re-building# the MFC library itself. Note: This option is used internally# when BROWSE=1 is sele

6、cted.PLATFORM=INTEL (defaults depends on host)# This option chooses the appropriate tools and sources for the# different platforms supporting the Win32 API. Currently INTEL,# MIPS, ALPHA, PPC are supported.INCREMENTAL=1# This option enables incremental/minimal compilation and# incremental linking.#

7、Advanced Options:MBCS=0# To build an SBCS library instead of the default (MBCS)# you can use MBCS=0. This creates a slightly smaller# library, but the code will not work in far-east markets.# This option has no effect when UNICODE=1.MT=0# To build a non-multithreaded library instead of the default#

8、(which enables multitheading and uses the multithread# C-runtimes) you can use MT=0.# Define defaults if not defined# Default PLATFORM depending on host environment!ifndef PLATFORMifndef PROCESSOR_ARCHITECTUREPROCESSOR_ARCHITECTURE=x86endifif $(PROCESSOR_ARCHITECTURE) = x86PLATFORM=INTELMIPSPLATFORM

9、=MIPSALPHAPLATFORM=ALPHAPPCPLATFORM=PPC# Default to DEBUG modeifndef DEBUGDEBUG=1# Default to NOT DLLifndef DLLDLL=0# Default Codeview Infoifndef CODEVIEW$(DEBUG)1CODEVIEW=1elseCODEVIEW=0# BROWSEONLY is default 0 and implies BROWSE=1 if BROWSEONLY=1ifndef BROWSEONLYBROWSEONLY=0$(BROWSEONLY) != 0unde

10、f BROWSEBROWSE=1# Default to no BROWSE infoifndef BROWSEBROWSE=0# Default to no INCREMENTAL buildifndef DEVBUILDDEVBUILD=0ifndef INCREMENTALINCREMENTAL=$(DEVBUILD)INCREMENTAL=0# Default to _MBCS buildifndef MBCSMBCS=1# Default to multithreading supportifndef MTMT=1# normalize cases of parameters, or

11、 error check$(CPU)$(PLATFORM)error Must set PLATFORM=MIPS for MIPS buildserror Must set PLATFORM=ALPHA for ALPHA buildsBASE=W# Parse options# DEBUG OPTIONSDEBUGSUF=DDEBDEFS=/D_DEBUGDEBOPTS=/Od# NON-DEBUG OPTIONSDEBUGSUF=DEBDEFS=INTELDEBOPTS=/O1 /GyF# PLATFORM optionsCL_MODEL=/D_X86_CL_MODEL=/D_MIPS_

12、CL_MODEL=/D_ALPHA_CL_MODEL=/D_PPC_$(CL_MODEL)error PLATFORM must be one of INTEL, MIPS, ALPHA, or PPC.# TYPE = Library Type Designator# c = normal C library# d = DLL libraryTYPE=cDEXT=# Object File Directory$(OBJ)D=$(MODEL)$(BASE)$(DEBUGSUF)$(DEXT) # subdirectory specific to variantD=$(OBJ) # User s

13、pecified directory# _AFXDLL DLL Variant$(DLL)2# _AFXDLL libraryTYPE=eD=DLL$(DEBUGSUF).$(BASE)$(UNICODE)D=$(MODEL)$DD=$DTARGOPTS=$(TARGOPTS) /MD /D_DLL /GF$(MT)TARGOPTS=$(TARGOPTS) /D_MTTARGDEFS=$(TARGDEFS) /D_WINDLL /D_AFXDLL# not _AFXDLL library$(MD)TARGOPTS=$(TARGOPTS) /MDTARGOPTS=$(TARGOPTS) /MTM

14、ODEL=UTARGDEFS=$(TARGDEFS) /D_UNICODEMODEL=N$(MBCS)TARGDEFS=$(TARGDEFS) /D_MBCS & $(TARG)error DLL=2 is used only from MFCDLL.MAK, MFCOLE.MAK, or MFCDB.MAKGOAL=$(TARG)GOAL=$(MODEL)afx$(TYPE)$(BASE)$(DEBUGSUF)# CODEVIEW options$(CODEVIEW)$(NO_PDB)CVOPTS=/Z7$(PROFLIB)error Cant build for profiling wit

15、hout PDB files.CVOPTS=/ZiCVOPTS=$(CVOPTS) /GhPDBOPTS=/Fd$(GOAL).pdbPDBOPTS=/Fd.lib$(GOAL).pdb# INCREMENTAL options$(INCREMENTAL)INCROPTS=/Gi /GmINCROPTS=/Gi- /Gm-# COMPILER OPTIONSCL_OPT=/W4 /WX /Zl /GX /GR $(INCROPTS) $(DEBOPTS) $(CVOPTS) $(TARGOPTS)$(DEVBUILD)CL_OPT=$(CL_OPT) /D_AFX_DEVBUILD$(BROW

16、SE)CL_OPT=/FR$D $(CL_OPT)CL_OPT=/Zs $(CL_OPT)CL_OPT=/Fo$D $(CL_OPT)DEFS=$(DEFS) $(DEBDEFS) $(TARGDEFS)# Library ComponentsOBJECT=$Dobjcore.obj $Dexcept.obj $Dvalidadd.obj $Ddumpcont.obj $Ddumpflt.obj $Darccore.obj $Darcobj.obj $Darcex.obj $Darcstrm.obj# non-shared diagnosticsOBJDIAG=$Ddumpinit.obj $

17、Ddumpout.obj $Dafxasert.obj $Dafxmem.obj $Dafxabort.objFILES=$Dfilecore.obj $Dfiletxt.obj $Dfilemem.obj $Dfileshrd.obj $Dfilex.obj $Dfilest.objCOLL1=$Darray_b.obj $Darray_d.obj $Darray_p.obj $Darray_o.obj $Darray_s.obj $Darray_u.obj $Darray_w.obj $Dlist_o.obj $Dlist_p.obj $Dlist_s.objCOLL2=$Dmap_pp.

18、obj $Dmap_pw.obj $Dmap_so.obj $Dmap_sp.obj $Dmap_ss.obj $Dmap_wo.obj $Dmap_wp.obj $Dplex.objMISC= $Dstrcore.obj $Dstrex.obj $Dtimecore.obj $Dafxdbcs.obj $Dafxstate.obj $Dafxtls.obj $Dfixalloc.obj $Dmtcore.obj $Dmtex.objWINDOWS= $Dwincore.obj $Dwinfrm.obj $Dwinfrm2.obj $Dwinfrmx.obj $Dwinmdi.obj $Dto

19、oltip.obj $Dwinmini.obj $Dwinhand.obj $Dwinmain.obj $Dbarcore.obj $Dbartool.obj $Dbardlg.obj $Dbarstat.obj $Dbardock.obj $Ddockcont.obj $Ddockstat.obj $Ddcprev.obj $Ddcmeta.obj $Dtrckrect.obj $Dbarcool.objDIALOG= $Dwinctrl1.obj $Dwinctrl2.obj $Dwinctrl3.obj $Dwinctrl4.obj $Dwinbtn.obj $Ddlgcore.obj

20、$Ddlgdata.obj $Ddlgfloat.obj $Ddlgprop.obj $Ddlgcomm.obj $Ddlgfile.obj $Ddlgprnt.obj $Ddlgclr.obj $Ddlgfnt.obj $Ddlgfr.obj $Dccdata.obj $Ddlgtempl.obj $Dwinctrl6.obj $Dwinctrl7.objWINMISC= $Dwingdi.obj $Dwingdix.obj $Dwinstr.obj $Dwinmenu.obj $Dauxdata.obj $Dafxcrit.obj $Dafxtrace.obj $Dwinutil.obj $Dwinocc.objDOCVIEW= $Dcmdtarg.obj $Ddoccore.obj $Ddoctempl.obj $Ddocsingl.obj $Ddocmulti.obj $Ddocmgr

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1