mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-09-22 10:43:39 -04:00
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>
This commit is contained in:
@@ -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 $<
|
||||
|
||||
|
Reference in New Issue
Block a user