diff options
author | Cyrill Gorcunov <gorcunov@gmail.com> | 2013-11-24 12:26:35 +0400 |
---|---|---|
committer | Cyrill Gorcunov <gorcunov@gmail.com> | 2013-11-24 12:26:35 +0400 |
commit | acfb97d3db0b91742465540c4558890e3c80fc8a (patch) | |
tree | 00669ed607e2ef69d5fa4f63203f7a3e47139bab /Makefile.in | |
parent | 305f3cee04d1adf3f4e335c5645814f2b67e8a69 (diff) | |
download | nasm-acfb97d3db0b91742465540c4558890e3c80fc8a.tar.gz nasm-acfb97d3db0b91742465540c4558890e3c80fc8a.tar.bz2 nasm-acfb97d3db0b91742465540c4558890e3c80fc8a.zip |
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>
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index bd807f2..e4c56b5 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. |