summaryrefslogtreecommitdiff
path: root/Mkfiles
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2008-06-08 21:15:01 -0700
committerH. Peter Anvin <hpa@zytor.com>2008-06-08 21:15:01 -0700
commitc735d1a6b2110b738ed1c3f01f10b5a2aaf45e6c (patch)
tree9beb8f096003a278e971dbd834427f6098c9a3dc /Mkfiles
parent2f0f9ea286e2e37681608e7d4b4ebd4253848478 (diff)
downloadnasm-c735d1a6b2110b738ed1c3f01f10b5a2aaf45e6c.tar.gz
nasm-c735d1a6b2110b738ed1c3f01f10b5a2aaf45e6c.tar.bz2
nasm-c735d1a6b2110b738ed1c3f01f10b5a2aaf45e6c.zip
Replace the WSAA macros with functions
Change the WSAA macros into functions; reducing the icache footprint.
Diffstat (limited to 'Mkfiles')
-rw-r--r--Mkfiles/msvc.mak3
-rw-r--r--Mkfiles/netware.mak3
-rw-r--r--Mkfiles/openwcom.mak3
-rw-r--r--Mkfiles/owlinux.mak3
4 files changed, 8 insertions, 4 deletions
diff --git a/Mkfiles/msvc.mak b/Mkfiles/msvc.mak
index 6707f54..beb15cc 100644
--- a/Mkfiles/msvc.mak
+++ b/Mkfiles/msvc.mak
@@ -32,7 +32,8 @@ X = .exe
.c.obj:
$(CC) /c $(ALL_CFLAGS) /Fo$@ $<
-NASM = nasm.$(O) nasmlib.$(O) float.$(O) insnsa.$(O) insnsb.$(O) \
+NASM = nasm.$(O) nasmlib.$(O) wsaa.$(O) \
+ float.$(O) insnsa.$(O) insnsb.$(O) \
assemble.$(O) labels.$(O) hashtbl.$(O) crc64.$(O) parser.$(O) \
outform.$(O) output/outbin.$(O) \
output/outaout.$(O) output/outcoff.$(O) \
diff --git a/Mkfiles/netware.mak b/Mkfiles/netware.mak
index 8b786a7..6de408b 100644
--- a/Mkfiles/netware.mak
+++ b/Mkfiles/netware.mak
@@ -28,7 +28,8 @@ LDFLAGS+=-s
O = o
-NASM = nasm.$(O) nasmlib.$(O) float.$(O) insnsa.$(O) insnsb.$(O) \
+NASM = nasm.$(O) nasmlib.$(O) wsaa.$(O) \
+ float.$(O) insnsa.$(O) insnsb.$(O) \
assemble.$(O) labels.$(O) hashtbl.$(O) crc64.$(O) parser.$(O) \
outform.$(O) output/outbin.$(O) \
output/outaout.$(O) output/outcoff.$(O) \
diff --git a/Mkfiles/openwcom.mak b/Mkfiles/openwcom.mak
index eb9183c..bf51808 100644
--- a/Mkfiles/openwcom.mak
+++ b/Mkfiles/openwcom.mak
@@ -44,7 +44,8 @@ X = .exe
$(CC) -c $(ALL_CFLAGS) -fo=$^@ $[@
# Note: wcl386 is broken if forward slashes are used as path separators.
-NASM = nasm.$(O) nasmlib.$(O) float.$(O) insnsa.$(O) insnsb.$(O) &
+NASM = nasm.$(O) nasmlib.$(O) wsaa.$(O) &
+ float.$(O) insnsa.$(O) insnsb.$(O) &
assemble.$(O) labels.$(O) hashtbl.$(O) crc64.$(O) parser.$(O) &
outform.$(O) output\outbin.$(O) &
output\outaout.$(O) output\outcoff.$(O) &
diff --git a/Mkfiles/owlinux.mak b/Mkfiles/owlinux.mak
index ab44fbb..f1d6f3f 100644
--- a/Mkfiles/owlinux.mak
+++ b/Mkfiles/owlinux.mak
@@ -55,7 +55,8 @@ X = .exe
.c.$(O):
$(CC) -c $(ALL_CFLAGS) -fo=$@ $<
-NASM = nasm.$(O) nasmlib.$(O) float.$(O) insnsa.$(O) insnsb.$(O) \
+NASM = nasm.$(O) nasmlib.$(O) wsaa.$(O) \
+ float.$(O) insnsa.$(O) insnsb.$(O) \
assemble.$(O) labels.$(O) hashtbl.$(O) crc64.$(O) parser.$(O) \
outform.$(O) output/outbin.$(O) \
output/outaout.$(O) output/outcoff.$(O) \