test/Makefile: add ith and srec targets
authorH. Peter Anvin <hpa@zytor.com>
Sun, 5 Jul 2009 23:14:33 +0000 (16:14 -0700)
committerH. Peter Anvin <hpa@zytor.com>
Sun, 5 Jul 2009 23:14:33 +0000 (16:14 -0700)
Add ith and srec targets because, well, why not...

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
test/Makefile

index 408f787e4a074434df6bdbe9b8a2f311dc61e726..0b81fc790caff12da6f82c364cd31a2618da00b1 100644 (file)
@@ -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 $<