Changes to allow Win32 microcode to be compiled by the Watcom C
authorChris Hanson <org/chris-hanson/cph>
Tue, 24 Oct 1995 06:32:35 +0000 (06:32 +0000)
committerChris Hanson <org/chris-hanson/cph>
Tue, 24 Oct 1995 06:32:35 +0000 (06:32 +0000)
compiler.

v7/src/microcode/cmpauxmd/makefile
v7/src/microcode/s/nt.m4

index d1d41703ca3dc66ab61f98fa912c41fe7ec47025..be42adb02942ff48fd0281eed1df8d8f86993ec1 100644 (file)
@@ -2,7 +2,7 @@
 # Makefile for i386 PC compiled code interface files
 # for the MIT Scheme microcode.
 #
-# $Id: makefile,v 1.5 1995/10/24 06:28:49 cph Exp $
+# $Id: makefile,v 1.6 1995/10/24 06:32:35 cph Exp $
 #
 
 all : i386-dos.asm i386-nt.asm i386-ntw.asm
@@ -20,4 +20,4 @@ i386-nt.asm : i386.m4 ../s/nt.m4
 # Expand for Win32 using Watcom compiler.
 i386-ntw.asm : i386.m4 ../s/nt.m4
        rm -f $@
-       ../s/nt.m4 "define(WCC386R,1)" < $< > $@
+       ../s/nt.m4 -P "define(WCC386R,1)" < $< > $@
index fd5817ec2473d020e2baae50453cbda9912b19f1..a3d6596e54f40506bb726567f52b9c002bbe2293 100755 (executable)
@@ -1,18 +1,17 @@
 #!/bin/csh -f
 ###
-###    $Id: nt.m4,v 1.1 1993/06/24 08:04:38 gjr Exp $
+### $Id: nt.m4,v 1.2 1995/10/24 06:29:51 cph Exp $
 ###
-###    Copyright (c) 1993 Massachusetts Institute of Technology
+### Copyright (c) 1993-95 Massachusetts Institute of Technology
 ###
-####   Postprocessing to get valid nt assembly language from cmpauxmd/i386.m4
+### Processing to get Win32 assembly language from "i386.m4".
 
 set tmpfil = "m4.tmp"
 set seen_input = 0
 rm -f "$tmpfil"
 
 echo changecom\(\`\;\'\) >> "$tmpfil"
-echo "define(DOS,1)" >> "$tmpfil"
-echo "define(WINNT,1)" >> "$tmpfil"
+echo "define(WIN32,1)" >> "$tmpfil"
 while ($#argv != 0)
   if ("$argv[1]" == "-P") then
     echo "$argv[2]" >> "$tmpfil"