From 2282aea47e55559008e1115fcad578bac8858df8 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Tue, 29 Jan 2019 11:35:27 +0100 Subject: Run "make help" without specifying app --- Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index dbcf712..17d00f3 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,9 @@ ifneq (${stack_usage}, ) COMMON_FLAGS += -fstack-usage endif -include src/app/${app}/Makefile.inc +ifneq (${app}, ) + include src/app/${app}/Makefile.inc +endif ifneq ($(findstring lm75,${drivers}), ) CXX_TARGETS += src/driver/lm75.cc @@ -130,7 +132,9 @@ ifeq (${trace_malloc}, 1) COMMON_FLAGS += -DMULTIPASS_TRACE_MALLOC endif -include src/arch/${arch}/Makefile.inc +ifneq (${arch}, ) + include src/arch/${arch}/Makefile.inc +endif stack: default ${QUIET}test -n "${OBJDUMP}" -- cgit v1.2.3