From 416623fe74715efd10e600f85b434652f0669c4f Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Mon, 28 Nov 1994 05:22:58 +0000 Subject: [PATCH] Add rule to generate OS/2 assembly language file. --- v7/src/microcode/cmpauxmd/makefile | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/v7/src/microcode/cmpauxmd/makefile b/v7/src/microcode/cmpauxmd/makefile index 71f6d5684..fdabb4357 100644 --- a/v7/src/microcode/cmpauxmd/makefile +++ b/v7/src/microcode/cmpauxmd/makefile @@ -1,18 +1,21 @@ # -# Makefile for MS DOS and Windows NT compiled code interface files +# Makefile for i386 PC compiled code interface files # for the MIT CScheme microcode. # -# $Id: makefile,v 1.2 1993/08/21 04:51:36 gjr Exp $ +# $Id: makefile,v 1.3 1994/11/28 05:22:58 cph Exp $ # -all: i386-dos.asm i386-nt.asm +all: i386-dos.asm i386-nt.asm i386-os2.asm i386-dos.asm: i386.m4 ../s/dos.m4 rm -f i386-dos.asm ../s/dos.m4 i386-dos.asm - i386-nt.asm: i386.m4 ../s/nt.m4 rm -f i386-nt.asm ../s/nt.m4 i386-nt.asm +# This rule will run on an OS/2 machine using GNU make and GNU m4. +i386-os2.asm: i386.m4 + rm -f i386-os2.asm + m4 -DOS2 < i386.m4 > i386-os2.asm -- 2.25.1