Makefile: add default rule

Otherwise `make` would only build the agent.

Signed-off-by: Peng Tao <bergwolf@hyper.sh>
This commit is contained in:
Peng Tao 2020-06-27 19:18:13 -07:00
parent 3f8d4b6822
commit 0fd1eb59a4

View File

@ -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)))