projects
/
platform
/
upstream
/
nasm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
224c9ac
)
test/Makefile: add ith and srec targets
author
H. Peter Anvin
<hpa@zytor.com>
Sun, 5 Jul 2009 23:14:33 +0000
(16:14 -0700)
committer
H. 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
patch
|
blob
|
history
diff --git
a/test/Makefile
b/test/Makefile
index 408f787e4a074434df6bdbe9b8a2f311dc61e726..0b81fc790caff12da6f82c364cd31a2618da00b1 100644
(file)
--- 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 $<