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:
H. Peter Anvin 2009-06-27 21:28:09 -07:00
parent 0674292c66
commit 5ca5007695

View file

@ -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) $< > $@