From 574e165ed19d0f96f1bf9c83caf9a6a3bb12d425 Mon Sep 17 00:00:00 2001 From: Bob Haddleton Date: Sun, 30 Apr 2023 22:40:40 -0500 Subject: [PATCH] Fix Makefile default target. Signed-off-by: Bob Haddleton --- Makefile | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/Makefile b/Makefile index 07dbca85..98903592 100644 --- a/Makefile +++ b/Makefile @@ -47,6 +47,20 @@ USE_HELM3 = true IMAGES = provider-kubernetes -include build/makelib/imagelight.mk +# ==================================================================================== +# Targets + +# run `make help` to see the targets and options + +# We want submodules to be set up the first time `make` is run. +# We manage the build/ folder and its Makefiles as a submodule. +# The first time `make` is run, the includes of build/*.mk files will +# all fail, and this target will be run. The next time, the default as defined +# by the includes will be run instead. +fallthrough: submodules + @echo Initial setup complete. Running make again . . . + @make + # ==================================================================================== # Setup XPKG @@ -64,20 +78,6 @@ xpkg.build.provider-kubernetes: do.build.images # Setup Local Dev -include build/makelib/local.mk -# ==================================================================================== -# Targets - -# run `make help` to see the targets and options - -# We want submodules to be set up the first time `make` is run. -# We manage the build/ folder and its Makefiles as a submodule. -# The first time `make` is run, the includes of build/*.mk files will -# all fail, and this target will be run. The next time, the default as defined -# by the includes will be run instead. -fallthrough: submodules - @echo Initial setup complete. Running make again . . . - @make - # Generate a coverage report for cobertura applying exclusions on # - generated file cobertura: