From 8f8f3478917401f3d286dafd73902e9d80b527d2 Mon Sep 17 00:00:00 2001 From: Dean Camera Date: Sun, 3 Jun 2012 15:20:51 +0000 Subject: Quiet initial recursive makefile invocation for all projects. --- Projects/makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Projects') diff --git a/Projects/makefile b/Projects/makefile index b6beef63b..50ce7ad6d 100644 --- a/Projects/makefile +++ b/Projects/makefile @@ -16,7 +16,7 @@ PROJECT_DIRECTORIES = $(shell ls -d *) all: - $(foreach PROJECT, $(PROJECT_DIRECTORIES), $(MAKE) -s -C $(PROJECT) clean all;) + @$(foreach PROJECT, $(PROJECT_DIRECTORIES), $(MAKE) -s -C $(PROJECT) clean all;) %: - $(foreach PROJECT, $(PROJECT_DIRECTORIES), $(MAKE) -s -C $(PROJECT) $@;) + @$(foreach PROJECT, $(PROJECT_DIRECTORIES), $(MAKE) -s -C $(PROJECT) $@;) -- cgit v1.2.3