From 0fd1eb59a4342aad9caaffde296ae87deaa0410b Mon Sep 17 00:00:00 2001 From: Peng Tao Date: Sat, 27 Jun 2020 19:18:13 -0700 Subject: [PATCH] Makefile: add default rule Otherwise `make` would only build the agent. Signed-off-by: Peng Tao --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 932ad6335e..f17597a261 100644 --- a/Makefile +++ b/Makefile @@ -19,6 +19,8 @@ STANDARD_TARGETS = build check clean install test include utils.mk +all: build + # Create the rules $(eval $(call create_all_rules,$(COMPONENTS),$(TOOLS),$(STANDARD_TARGETS)))