mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-21 03:14:19 +08:00
test/Makefile: add rule to produce a .dbg file
Add a rule to produce a .dbg file, that is, a dump of all the calls to the back end. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
This commit is contained in:
parent
0674292c66
commit
5ca5007695
@ -20,6 +20,9 @@ TESTS = $(wildcard *.asm)
|
||||
%.obj64: %.asm $(NASM)
|
||||
$(NASM) $(NASMOPT) -f win64 -o $@ -l $*.lst $<
|
||||
|
||||
%.dbg: %.asm $(NASM)
|
||||
$(NASM) $(NASMOPT) -f dbg -o $@ -l $*.lst $<
|
||||
|
||||
%.asm: %.pl
|
||||
$(PERL) $< > $@
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user