From f04031bbd7811dc5621867d4a416962420ba9e08 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Sat, 22 Sep 2007 21:47:13 -0700 Subject: [PATCH] Make test/Makefile a bit more useful Make all the tests depend on the nasm binary... --- test/Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/Makefile b/test/Makefile index f48e3d9..a65a324 100644 --- a/test/Makefile +++ b/test/Makefile @@ -2,22 +2,22 @@ NASM = ../nasm -.asm.bin: +%.bin: %.asm $(NASM) $(NASM) -f bin -o $@ -l $*.lst $< -.asm.o: +%.o: %.asm $(NASM) $(NASM) -f elf32 -o $@ -l $*.lst $< -.asm.o64: +%.o64: %.asm $(NASM) $(NASM) -f elf64 -o $@ -l $*.lst $< -.asm.obj: +%.obj: %.asm $(NASM) $(NASM) -f win32 -o $@ -l $*.lst $< -.asm.obj64: +%.obj64: %.asm $(NASM) $(NASM) -f win64 -o $@ -l $*.lst $< all: clean: - rm -f *.com *.o *.o64 *.obj *.obj64 *.exe *.lst + rm -f *.com *.o *.o64 *.obj *.obj64 *.exe *.lst *.bin -- 2.7.4