citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit fddfdf016caa1d7214037ecb3cd3fc06051bba8c
parent 2aadafcc6295d601053384ed4aa18e048bc2090b
Author: kyle <kyle@getaddrinfo.net>
Date:   Sat, 31 Oct 2015 17:33:54 -0600

Makefile: silence some commands

Diffstat:
MMakefile | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Makefile b/Makefile @@ -3,7 +3,7 @@ SUBDIRS = instrument runtime viewer all: make_subdirs test: make_subdirs - sh run_tests.sh + @sh run_tests.sh clean: make -C instrument clean @@ -11,6 +11,6 @@ clean: make -C viewer clean make_subdirs: - make -C instrument - make -C runtime - make -C viewer + @make -C instrument + @make -C runtime + @make -C viewer