From b8e604eb5d397a956ec370da5ee47368a847e367 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Thu, 4 Oct 2007 15:18:23 -0700 Subject: Additional rules in test/Makefile Add rules for .pl -> .asm --- test/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'test') diff --git a/test/Makefile b/test/Makefile index bd42435..64b6523 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,7 +1,8 @@ -.SUFFIXES: .bin .o .o64 .obj .obj64 .exe .asm .lst +.SUFFIXES: .bin .o .o64 .obj .obj64 .exe .asm .lst .pl NASM = ../nasm NASMOPT = -O999 -I../misc +PERL = perl %.bin: %.asm $(NASM) $(NASM) $(NASMOPT) -f bin -o $@ -l $*.lst $< @@ -18,6 +19,9 @@ NASMOPT = -O999 -I../misc %.obj64: %.asm $(NASM) $(NASM) $(NASMOPT) -f win64 -o $@ -l $*.lst $< +%.asm: %.pl + $(PERL) $< > $@ + all: clean: -- cgit v1.2.3