From 98a4049faee7f0e763044cf2cfe85fffa46e95d3 Mon Sep 17 00:00:00 2001 From: Satoru Takeuchi Date: Wed, 27 Oct 2021 13:38:54 +0000 Subject: [PATCH] build: fix the default target of Makefile The current default target of Makefile is "_output/charts". ``` $ make -d ... Successfully remade target file '/home/sat/go/src/github.com/rook/rook/_output/charts'. ``` It's because Makefile first includes "build/makelib/helm.mk", this file defines some targets, and the first entry is regarded as the default target. Signed-off-by: Satoru Takeuchi --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 6757ce1b0f4a..9f5f5924ed55 100644 --- a/Makefile +++ b/Makefile @@ -17,6 +17,7 @@ include build/makelib/helm.mk .PHONY: all all: build +.DEFAULT_GOAL := all # ==================================================================================== # Build Options