From 5ca5007695c4caa4658125177aa729556e5e5c2d Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Sat, 27 Jun 2009 21:28:09 -0700 Subject: [PATCH] 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 --- test/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/Makefile b/test/Makefile index 357b9bab..408f787e 100644 --- a/test/Makefile +++ b/test/Makefile @@ -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) $< > $@ -- 2.11.4.GIT