mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-07-24 10:25:42 -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:
parent
224c9ac063
commit
fd18c5c42b
@ -8,6 +8,12 @@ TESTS = $(wildcard *.asm)
|
|||||||
%.bin: %.asm $(NASM)
|
%.bin: %.asm $(NASM)
|
||||||
$(NASM) $(NASMOPT) -f bin -o $@ -l $*.lst $<
|
$(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)
|
%.o: %.asm $(NASM)
|
||||||
$(NASM) $(NASMOPT) -f elf32 -o $@ -l $*.lst $<
|
$(NASM) $(NASMOPT) -f elf32 -o $@ -l $*.lst $<
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user