summaryrefslogtreecommitdiff
path: root/Mkfiles/openwcom.mak
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2016-09-24 09:46:47 -0700
committerH. Peter Anvin <hpa@zytor.com>2016-09-24 09:46:47 -0700
commitfa803abc610d024915876ee513a1198bea062073 (patch)
tree4de7defb91e353b49a989cdba4efe0fce69b852a /Mkfiles/openwcom.mak
parent04445364fc9123ad40bf5581ffa4c5afac4c57dc (diff)
downloadnasm-fa803abc610d024915876ee513a1198bea062073.tar.gz
backend: move wrapper for legacy output functions to a library routine
Move the wrapper for legacy output into a library routine so the backends can be ported one at a time. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'Mkfiles/openwcom.mak')
-rw-r--r--Mkfiles/openwcom.mak10
1 files changed, 7 insertions, 3 deletions
diff --git a/Mkfiles/openwcom.mak b/Mkfiles/openwcom.mak
index f62a9a13..c8fbf856 100644
--- a/Mkfiles/openwcom.mak
+++ b/Mkfiles/openwcom.mak
@@ -60,8 +60,8 @@ NASM = asm/nasm.$(O) &
&
macros/macros.$(O) &
&
- output/outform.$(O) output/outlib.$(O) output/nulldbg.$(O) &
- output/nullout.$(O) &
+ output/outform.$(O) output/outlib.$(O) output/legacy.$(O) &
+ output/nulldbg.$(O) output/nullout.$(O) &
output/outbin.$(O) output/outaout.$(O) output/outcoff.$(O) &
output/outelf.$(O) &
output/outobj.$(O) output/outas86.$(O) output/outrdf2.$(O) &
@@ -422,6 +422,10 @@ output/codeview.$(O): output/codeview.c asm/directiv.h asm/pptok.h &
include/nasm.h include/nasmint.h include/nasmlib.h include/opflags.h &
include/saa.h include/tables.h output/outlib.h output/pecoff.h version.h &
x86/insnsi.h x86/regs.h
+output/legacy.$(O): output/legacy.c asm/directiv.h asm/pptok.h asm/preproc.h &
+ config.h include/compiler.h include/nasm.h include/nasmint.h &
+ include/nasmlib.h include/opflags.h include/tables.h x86/insnsi.h &
+ x86/regs.h
output/nulldbg.$(O): output/nulldbg.c asm/directiv.h asm/pptok.h &
asm/preproc.h config.h include/compiler.h include/nasm.h include/nasmint.h &
include/nasmlib.h include/opflags.h include/tables.h output/outlib.h &
@@ -452,7 +456,7 @@ output/outcoff.$(O): output/outcoff.c asm/directiv.h asm/eval.h asm/pptok.h &
output/outdbg.$(O): output/outdbg.c asm/directiv.h asm/pptok.h asm/preproc.h &
config.h include/compiler.h include/nasm.h include/nasmint.h &
include/nasmlib.h include/opflags.h include/tables.h output/outform.h &
- x86/insnsi.h x86/regs.h
+ output/outlib.h x86/insnsi.h x86/regs.h
output/outelf.$(O): output/outelf.c asm/directiv.h asm/eval.h asm/pptok.h &
asm/preproc.h asm/stdscan.h config.h include/compiler.h include/nasm.h &
include/nasmint.h include/nasmlib.h include/opflags.h include/raa.h &