summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2009-07-05 16:14:33 -0700
committerH. Peter Anvin <hpa@zytor.com>2009-07-05 16:14:33 -0700
commitfd18c5c42b80fee767f49e38ff0c792b4442e12c (patch)
tree3de728ec8dc6b2e5aedbcfb289500e612a499bf2
parent224c9ac0635891896d99c8c0fa1a839ac1b5efae (diff)
downloadnasm-fd18c5c42b80fee767f49e38ff0c792b4442e12c.tar.gz
test/Makefile: add ith and srec targets
Add ith and srec targets because, well, why not... Signed-off-by: H. Peter Anvin <hpa@zytor.com>
-rw-r--r--test/Makefile6
1 files changed, 6 insertions, 0 deletions
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 $<