Additional rules in test/Makefile

Add rules for .pl -> .asm
This commit is contained in:
H. Peter Anvin 2007-10-04 15:18:23 -07:00
parent 9d637df6da
commit b8e604eb5d

View File

@ -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: