From: nasm-bot f. C. G. <gor...@gm...> - 2013-11-24 09:30:38
|
Commit-ID: acfb97d3db0b91742465540c4558890e3c80fc8a Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=acfb97d3db0b91742465540c4558890e3c80fc8a Author: Cyrill Gorcunov <gor...@gm...> AuthorDate: Sun, 24 Nov 2013 12:26:35 +0400 Committer: Cyrill Gorcunov <gor...@gm...> CommitDate: Sun, 24 Nov 2013 12:26:35 +0400 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 <gor...@gm...> --- Makefile.in | 3 +++ 1 file changed, 3 insertions(+) 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. |