nasm/test/Makefile
H. Peter Anvin f04031bbd7 Make test/Makefile a bit more useful
Make all the tests depend on the nasm binary...
2007-09-22 21:47:13 -07:00

24 lines
429 B
Makefile

.SUFFIXES: .bin .o .o64 .obj .obj64 .exe .asm .lst
NASM = ../nasm
%.bin: %.asm $(NASM)
$(NASM) -f bin -o $@ -l $*.lst $<
%.o: %.asm $(NASM)
$(NASM) -f elf32 -o $@ -l $*.lst $<
%.o64: %.asm $(NASM)
$(NASM) -f elf64 -o $@ -l $*.lst $<
%.obj: %.asm $(NASM)
$(NASM) -f win32 -o $@ -l $*.lst $<
%.obj64: %.asm $(NASM)
$(NASM) -f win64 -o $@ -l $*.lst $<
all:
clean:
rm -f *.com *.o *.o64 *.obj *.obj64 *.exe *.lst *.bin