From 7c723a8e484991be04d2ef2e55e32e461fbbc2b8 Mon Sep 17 00:00:00 2001 From: ceriel Date: Wed, 29 Nov 1989 16:12:47 +0000 Subject: [PATCH] Made compilation command and interpreter command variable --- lang/pc/test/Makefile | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/lang/pc/test/Makefile b/lang/pc/test/Makefile index 4a8c905cd..6e60b9cdc 100644 --- a/lang/pc/test/Makefile +++ b/lang/pc/test/Makefile @@ -6,18 +6,20 @@ FLOATS=-DNOFLOAT # for machines with software floating point library: FLOATS=-fp PC = apc +INTPC = em44 +INT = int all: testC testI testI: - em22 $(FLOATS) t1.p; int - em22 $(FLOATS) t2.p; int - em22 $(FLOATS) t3.p; int e.out f1 f2 f3 f4 f5 f6 - em22 $(FLOATS) t4.p; int - em22 $(FLOATS) t5.p; int - em22 $(FLOATS) tstenc.p; int - em22 $(FLOATS) tstgto.p; int - em22 $(FLOATS) -.p callc.p cmod.c ; int + $(INTPC) $(FLOATS) t1.p; $(INT) + $(INTPC) $(FLOATS) t2.p; $(INT) + $(INTPC) $(FLOATS) t3.p; $(INT) e.out f1 f2 f3 f4 f5 f6 + $(INTPC) $(FLOATS) t4.p; $(INT) + $(INTPC) $(FLOATS) t5.p; $(INT) + $(INTPC) $(FLOATS) tstenc.p; $(INT) + $(INTPC) $(FLOATS) tstgto.p; $(INT) + $(INTPC) $(FLOATS) -.p callc.p cmod.c ; $(INT) rm -f e.out f? *.k int.log int.mess testC: -- 2.34.1