comparison Makefile @ 15190:fada746a971b v8.1.0605

patch 8.1.0605: running make in the top directory echoes a comment commit https://github.com/vim/vim/commit/6403bcdaf4dc36c0445a539a37510534ef87ca24 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Dec 16 16:48:47 2018 +0100 patch 8.1.0605: running make in the top directory echoes a comment Problem: Running make in the top directory echoes a comment. Solution: Prefix with @. (closes https://github.com/vim/vim/issues/3698)
author Bram Moolenaar <Bram@vim.org>
date Sun, 16 Dec 2018 17:00:07 +0100
parents ea6f7b224be7
children cb1652e41314
comparison
equal deleted inserted replaced
15189:9a93ea72e175 15190:fada746a971b
37 cp src/config.mk.dist src/auto/config.mk; \ 37 cp src/config.mk.dist src/auto/config.mk; \
38 fi 38 fi
39 @echo "Starting make in the src directory." 39 @echo "Starting make in the src directory."
40 @echo "If there are problems, cd to the src directory and run make there" 40 @echo "If there are problems, cd to the src directory and run make there"
41 cd src && $(MAKE) $@ 41 cd src && $(MAKE) $@
42 # When the target is "test" also run the indent tests. 42 @# When the target is "test" also run the indent tests.
43 @if test "$@" = "test"; then \ 43 @if test "$@" = "test"; then \
44 $(MAKE) indenttest; \ 44 $(MAKE) indenttest; \
45 fi 45 fi
46 46
47 # Executable used for running the indent tests. 47 # Executable used for running the indent tests.