From ec11bd4af78d22187eb3f027fed9b79a6d11678f Mon Sep 17 00:00:00 2001 From: Mahmoud Al-Qudsi Date: Wed, 18 Dec 2019 22:13:41 -0600 Subject: [PATCH] [make] add default `all` in addition to catch-all `%` --- GNUmakefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/GNUmakefile b/GNUmakefile index b67dd736c..3d0d61d65 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -22,6 +22,8 @@ endif MAKE_DIR:=$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST)))) ifeq ($(shell test -f $(MAKE_DIR)/Makefile && echo 1), 1) +all: + @+$(MAKE) -f $(MAKE_DIR)/Makefile $(MAKECMDGOALS) --no-print-directory %: @+$(MAKE) -f $(MAKE_DIR)/Makefile $(MAKECMDGOALS) --no-print-directory