From fd18c5c42b80fee767f49e38ff0c792b4442e12c Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Sun, 5 Jul 2009 16:14:33 -0700 Subject: [PATCH] test/Makefile: add ith and srec targets Add ith and srec targets because, well, why not... Signed-off-by: H. Peter Anvin --- test/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/Makefile b/test/Makefile index 408f787e..0b81fc79 100644 --- a/test/Makefile +++ b/test/Makefile @@ -8,6 +8,12 @@ TESTS = $(wildcard *.asm) %.bin: %.asm $(NASM) $(NASM) $(NASMOPT) -f bin -o $@ -l $*.lst $< +%.ith: %.asm $(NASM) + $(NASM) $(NASMOPT) -f ith -o $@ -l $*.lst $< + +%.srec: %.asm $(NASM) + $(NASM) $(NASMOPT) -f srec -o $@ -l $*.lst $< + %.o: %.asm $(NASM) $(NASM) $(NASMOPT) -f elf32 -o $@ -l $*.lst $<