test/Makefile: make a bit more useful

This commit is contained in:
H. Peter Anvin 2007-09-24 13:42:09 -07:00
parent 37a321fbbe
commit 9713703db7

View File

@ -1,21 +1,22 @@
.SUFFIXES: .bin .o .o64 .obj .obj64 .exe .asm .lst
NASM = ../nasm
NASMOPT = -O999 -I../misc
%.bin: %.asm $(NASM)
$(NASM) -f bin -o $@ -l $*.lst $<
$(NASM) $(NASMOPT) -f bin -o $@ -l $*.lst $<
%.o: %.asm $(NASM)
$(NASM) -f elf32 -o $@ -l $*.lst $<
$(NASM) $(NASMOPT) -f elf32 -o $@ -l $*.lst $<
%.o64: %.asm $(NASM)
$(NASM) -f elf64 -o $@ -l $*.lst $<
$(NASM) $(NASMOPT) -f elf64 -o $@ -l $*.lst $<
%.obj: %.asm $(NASM)
$(NASM) -f win32 -o $@ -l $*.lst $<
$(NASM) $(NASMOPT) -f win32 -o $@ -l $*.lst $<
%.obj64: %.asm $(NASM)
$(NASM) -f win64 -o $@ -l $*.lst $<
$(NASM) $(NASMOPT) -f win64 -o $@ -l $*.lst $<
all: