From: nasm-bot f. H. P. A. <hp...@li...> - 2016-02-18 21:09:21
|
Commit-ID: 114ba75f7bb6dbd935b8b72537544d8e8ec49716 Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=114ba75f7bb6dbd935b8b72537544d8e8ec49716 Author: H. Peter Anvin <hp...@li...> AuthorDate: Thu, 18 Feb 2016 13:06:04 -0800 Committer: H. Peter Anvin <hp...@li...> CommitDate: Thu, 18 Feb 2016 13:06:04 -0800 test/Makefile: add a rule for nasm itself If NASM needs to be rebuilt, build it in the proper directory. Signed-off-by: H. Peter Anvin <hp...@li...> --- test/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/Makefile b/test/Makefile index 8b51359..a76044d 100644 --- a/test/Makefile +++ b/test/Makefile @@ -5,6 +5,9 @@ NASMOPT = -Ox -I../misc $(OPT) PERL = perl TESTS = $(wildcard *.asm) +$(NASM): + $(MAKE) -C .. + %.bin: %.asm $(NASM) $(NASM) $(NASMOPT) -f bin -o $@ -l $*.lst $< |