Add code for using Microsoft's assembler.
authorChris Hanson <org/chris-hanson/cph>
Wed, 18 Jul 2001 05:27:33 +0000 (05:27 +0000)
committerChris Hanson <org/chris-hanson/cph>
Wed, 18 Jul 2001 05:27:33 +0000 (05:27 +0000)
v7/src/microcode/ntutl/makefile

index 2a33df4be2764972f77a98e08475092619ac4279..4d60308d7dc956d82cf8088df659de93fc6b925c 100644 (file)
@@ -1,6 +1,6 @@
 ### -*- Fundamental -*-
 ###
-###     $Id: makefile,v 1.25 2001/07/18 05:25:00 cph Exp $
+###     $Id: makefile,v 1.26 2001/07/18 05:27:33 cph Exp $
 ###
 ###     Copyright (c) 1992-2001 Massachusetts Institute of Technology
 ###
@@ -39,6 +39,13 @@ USER_LIBS =
 ASFLAGS = /bt=nt /d1 /fpi /fp3 /mf /zq
 AS = wasm
 
+# **** I'm told that this is the right command line for using
+# **** Microsoft's assembler.  To use this, comment out the two lines
+# **** above, and uncomment these two.  (You will probably need to
+# **** adjust the path in the definition of AS.)
+#ASFLAGS = /Cx /Zm /coff /c
+#AS = c:\masm611\bin\ml
+
 !IFDEF NODEBUG
 cflags = $(cflags) -Ox
 !ELSE