⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile.ms7

📁 开源的nasm编译器源码,研究编译器原理很有帮且
💻 MS7
字号:
# Makefile for the Netwide Assembler under 16-bit DOS## The Netwide Assembler is copyright (C) 1996 Simon Tatham and# Julian Hall. All rights reserved. The software is# redistributable under the licence given in the file "Licence"# distributed in the NASM archive.## This Makefile is designed to build NASM using a 16-bit DOS C# compiler such as Microsoft C, provided you have a compatible MAKE.# It's been tested with Microsoft C 5.x plus Borland Make. (Yes, I# know it's silly, but...)# update:  MSC 5.1 will not compile 'nasmlib.c'   (arg lists don't match)#          MSC 6.00A will not compile 'insnsa.c'  (qcl is required)#          MSC 7.00 will compile all## GNU software compiled by DJGPP is also required:##    grep  2.4#    perl  5.6.1## Source and DOS/Windows binaries may be downloaded from:##    ftp://ftp.simtel.net/pub/simtelnet/gnu/djgpp/v2gnu/## Compilation has been tested under Windows 98 & Windows 2000# MSC 7.00 & DJGPP applications require a DPMI interface, which is# a part of MSC 7.00 under DOS.  It is also a part of Windows.### For a 16-bit compiler, we don't need all the formats#CONFIG = -DOF_ONLY -DOF_BIN -DOF_OBJ -DOF_WIN32 -DOF_AS86#CC = cl /c /O /AL /Gt#   Compile for a 286, ain't nobody using an 8086 anymoreCC = cl /c /Oz /AL /Gt256 /G2 /I.. # MSC 7.00#QCL = qcl /c /AL /GtQCL = $(CC)                     # MSC 7.00LINK = linkLINKFLAGS = /F4000 /FmLIBRARIES =EXE = .exe#OBJ = obj#.c.$(OBJ):	$(CC) $(CONFIG) /Fo$@ $*.cNASMOBJS1 = nasm.$(OBJ) nasmlib.$(OBJ) float.$(OBJ) insnsa.$(OBJ) \           assemble.$(OBJ) labels.$(OBJ) parser.$(OBJ) outform.$(OBJ)NASMOBJS2 = output\outbin.$(OBJ) output\outaout.$(OBJ) output\outcoff.$(OBJ)NASMOBJS3 = output\outelf.$(OBJ) output\outobj.$(OBJ) output\outas86.$(OBJ)NASMOBJS4 = output\outrdf.$(OBJ) output\outrdf2.$(OBJ) output\outieee.$(OBJ)NASMOBJS5 = output\outdbg.$(OBJ) preproc.$(OBJ) listing.$(OBJ) eval.$(OBJ)NASMOBJS = $(NASMOBJS1) $(NASMOBJS2) $(NASMOBJS3) $(NASMOBJS4) $(NASMOBJS5)NDISASMOBJS = ndisasm.$(OBJ) disasm.$(OBJ) sync.$(OBJ) nasmlib.$(OBJ) \              insnsd.$(OBJ)all : nasm$(EXE) ndisasm$(EXE)# We have to have a horrible kludge here to get round the 128 character# limit, as usual...LINKOBJS = a*.obj e*.obj f*.obj insnsa.obj l*.obj na*.obj o*.obj p*.objnasm$(EXE): $(NASMOBJS)	echo $(NASMOBJS1) + >foo	echo $(NASMOBJS2) + >>foo	echo $(NASMOBJS3) + >>foo	echo $(NASMOBJS4) + >>foo	echo $(NASMOBJS5)   >> foo	$(LINK) /st:4096 @foo,nasm;ndisasm$(EXE): $(NDISASMOBJS)	$(LINK) $(NDISASMOBJS), ndisasm;output\version.h: version.h	copy version.h outputoutput\nasm.h: nasm.h	copy nasm.h outputoutput\insnsi.h: insnsi.h	copy insnsi.h outputoutput\nasmlib.h: nasmlib.h	copy nasmlib.h outputoutput\outform.h: outform.h	copy outform.h output# These files contains all the standard macros that are derived from# the version number.version.h: version version.pl	perl version.pl h < version > version.hversion.mac: version version.pl	perl version.pl mac < version > version.mac# This source file is generated from the standard macros file# `standard.mac' by another Perl script. Again, it's part of the# standard distribution.macros.c: macros.pl standard.mac version.mac	perl macros.pl standard.mac version.macinsnsa.c insnsd.c insnsi.h insnsn.c: insns16.dat insns.pl	perl insns.pl insns16.datinsns16.dat:  insns.dat	grep -v WILLAMETTE insns.dat | grep -v KATMAI | grep -v SSE | \	    grep -v MMX | grep -v 3DNOW | grep -v UNDOC >insns16.dat# These source files are generated from regs.dat by yet another# perl script. regs.c: regs.dat regs.pl	perl regs.pl c regs.dat > regs.cregflags.c: regs.dat regs.pl	perl regs.pl fc regs.dat > regflags.cregdis.c: regs.dat regs.pl	perl regs.pl dc regs.dat > regdis.cregvals.c: regs.dat regs.pl	perl regs.pl vc regs.dat > regvals.cregs.h: regs.dat regs.pl	perl regs.pl h regs.dat > regs.h# Another grotty hack: QC is less likely to run out of memory than# CL proper; and we don't need any optimisation in these modules# since they're just data.insnsa.$(OBJ): insnsa.c nasm.h version.h insnsi.h insns.h	$(QCL) insnsa.cinsnsd.$(OBJ): insnsd.c nasm.h version.h insnsi.h insns.h	$(QCL) insnsd.ctidy:	del output\*.h	del *.$(OBJ)	del output\*.$(OBJ)clean :  tidy	del nasm$(EXE)	del ndisasm$(EXE)spotless:  clean	del insns16.dat	del insnsa.c	del insnsd.c	del insnsi.h	del insnsn.c        del version.h#-- Magic hints to mkdep.pl --## @object-ending: ".$(OBJ)"# @path-separator: "\"#-- Everything below is generated by mkdep.pl - do not edit --#assemble.$(OBJ): assemble.c insns.h assemble.h regvals.c nasm.h regs.h \ insnsi.h nasmlib.h version.hdisasm.$(OBJ): disasm.c insns.h regs.c sync.h names.c nasm.h disasm.h regs.h \ insnsn.c insnsi.h version.h regdis.ceval.$(OBJ): eval.c nasm.h regs.h labels.h nasmlib.h version.h eval.hfloat.$(OBJ): float.c nasm.h regs.h version.hinsnsa.$(OBJ): insnsa.c insns.h nasm.h regs.h insnsi.h version.hinsnsd.$(OBJ): insnsd.c insns.h nasm.h regs.h insnsi.h version.hinsnsn.$(OBJ): insnsn.clabels.$(OBJ): labels.c nasm.h regs.h nasmlib.h version.hlisting.$(OBJ): listing.c listing.h nasm.h regs.h nasmlib.h version.hmacros.$(OBJ): macros.cnames.$(OBJ): names.c regs.c insnsn.cnasm.$(OBJ): nasm.c listing.h preproc.h insns.h outform.h assemble.h \ parser.h nasm.h regs.h labels.h insnsi.h nasmlib.h version.h eval.hnasmlib.$(OBJ): nasmlib.c insns.h regs.c names.c nasm.h regs.h insnsn.c \ insnsi.h nasmlib.h version.hndisasm.$(OBJ): ndisasm.c insns.h sync.h nasm.h disasm.h regs.h insnsi.h \ nasmlib.h version.houtform.$(OBJ): outform.c outform.h nasm.h regs.h version.houtput\outaout.$(OBJ): output\outaout.c outform.h nasm.h regs.h nasmlib.h \ version.houtput\outas86.$(OBJ): output\outas86.c outform.h nasm.h regs.h nasmlib.h \ version.houtput\outbin.$(OBJ): output\outbin.c outform.h nasm.h regs.h nasmlib.h \ version.houtput\outcoff.$(OBJ): output\outcoff.c outform.h nasm.h regs.h nasmlib.h \ version.houtput\outdbg.$(OBJ): output\outdbg.c outform.h nasm.h regs.h nasmlib.h \ version.houtput\outelf.$(OBJ): output\outelf.c outform.h nasm.h regs.h nasmlib.h \ version.houtput\outieee.$(OBJ): output\outieee.c outform.h nasm.h regs.h nasmlib.h \ version.houtput\outobj.$(OBJ): output\outobj.c outform.h nasm.h regs.h nasmlib.h \ version.houtput\outrdf.$(OBJ): output\outrdf.c outform.h nasm.h regs.h nasmlib.h \ version.houtput\outrdf2.$(OBJ): output\outrdf2.c outform.h nasm.h regs.h nasmlib.h \ version.hparser.$(OBJ): parser.c insns.h parser.h nasm.h regs.h insnsi.h regflags.c \ float.h nasmlib.h version.hpreproc.$(OBJ): preproc.c nasm.h macros.c regs.h nasmlib.h version.hregdis.$(OBJ): regdis.cregflags.$(OBJ): regflags.cregs.$(OBJ): regs.cregvals.$(OBJ): regvals.csync.$(OBJ): sync.c sync.h

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -