Skip to content

Commit

Permalink
Fix Makefile default target.
Browse files Browse the repository at this point in the history
Signed-off-by: Bob Haddleton <[email protected]>
  • Loading branch information
bobh66 committed May 1, 2023
1 parent 4deff8a commit 574e165
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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:
Expand Down

0 comments on commit 574e165

Please sign in to comment.