diff options
Diffstat (limited to 'Makefile.dos')
-rw-r--r-- | Makefile.dos | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Makefile.dos b/Makefile.dos index 18a3b363..94403fc1 100644 --- a/Makefile.dos +++ b/Makefile.dos @@ -10,8 +10,8 @@ # It's been tested with Microsoft C 5.x plus Borland Make. (Yes, I # know it's silly, but...) -CC = cl /c /O /AL -QCL = qcl /c /AL +CC = cl /c /O /AL /Gt +QCL = qcl /c /AL /Gt LINK = cl LINKFLAGS = LIBRARIES = @@ -25,7 +25,7 @@ NASMOBJS = nasm.$(OBJ) nasmlib.$(OBJ) float.$(OBJ) insnsa.$(OBJ) \ assemble.$(OBJ) labels.$(OBJ) parser.$(OBJ) outform.$(OBJ) \ outbin.$(OBJ) outaout.$(OBJ) outcoff.$(OBJ) outelf.$(OBJ) \ outobj.$(OBJ) outas86.$(OBJ) outrdf.$(OBJ) outdbg.$(OBJ) \ - preproc.$(OBJ) listing.$(OBJ) + preproc.$(OBJ) listing.$(OBJ) eval.$(OBJ) NDISASMOBJS = ndisasm.$(OBJ) disasm.$(OBJ) sync.$(OBJ) nasmlib.$(OBJ) \ insnsd.$(OBJ) @@ -34,7 +34,7 @@ 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 f*.obj insnsa.obj l*.obj na*.obj o*.obj p*.obj +LINKOBJS = a*.obj e*.obj f*.obj insnsa.obj l*.obj na*.obj o*.obj p*.obj nasm$(EXE): $(NASMOBJS) cl /Fenasm.exe /F 4000 $(LINKOBJS) @@ -43,6 +43,7 @@ ndisasm$(EXE): $(NDISASMOBJS) assemble.$(OBJ): assemble.c nasm.h assemble.h insns.h disasm.$(OBJ): disasm.c nasm.h disasm.h sync.h insns.h names.c +eval.$(OBJ): eval.c eval.h nasm.h nasmlib.h float.$(OBJ): float.c nasm.h labels.$(OBJ): labels.c nasm.h nasmlib.h listing.$(OBJ): listing.c nasm.h nasmlib.h listing.h |