summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCyrill Gorcunov <gorcunov@gmail.com>2013-11-24 12:26:35 +0400
committerCyrill Gorcunov <gorcunov@gmail.com>2013-11-24 12:26:35 +0400
commitacfb97d3db0b91742465540c4558890e3c80fc8a (patch)
tree00669ed607e2ef69d5fa4f63203f7a3e47139bab
parent305f3cee04d1adf3f4e335c5645814f2b67e8a69 (diff)
downloadnasm-acfb97d3db0b91742465540c4558890e3c80fc8a.tar.gz
make: Add 'golden' target
We've 'test' target in toplevel Makefile, lets be complete and allow to generate "golden" tests from toplevel as well. Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
-rw-r--r--Makefile.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in
index bd807f2c..e4c56b54 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -275,6 +275,9 @@ splint:
test: nasm$(X)
cd test && $(PERL) performtest.pl --nasm=../nasm *.asm
+golden: nasm$(X)
+ cd test && $(PERL) performtest.pl --golden --nasm=../nasm *.asm
+
#
# This build dependencies in *ALL* makefiles. Partially for that reason,
# it's expected to be invoked manually.