From 95b4ad119d6c205825ef74acd1ef74981674099d Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Fri, 12 Oct 2018 14:35:37 +0200 Subject: Makefiles: quiet mode, optional info output --- Makefile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 224b71f..baf00b5 100644 --- a/Makefile +++ b/Makefile @@ -7,6 +7,12 @@ CXXFLAGS = -std=c++14 TARGETS = src/app/${app}/main.cc src/os/object/cpp_helpers.cc src/os/object/outputstream.cc +QUIET = @ + +ifneq (${verbose}, ) + QUIET = +endif + include src/app/${app}/Makefile.inc ifneq ($(findstring lm75,${drivers}), ) @@ -118,4 +124,6 @@ help: arch_help @echo "Global architectures:" @echo " $(shell ls src/arch)" -.PHONY: clean help +info: arch_info + +.PHONY: clean help info -- cgit v1.2.3