Skip to content

Commit

Permalink
Merge pull request #192 from nokia/fix_makefile
Browse files Browse the repository at this point in the history
Fix Makefile default target.
  • Loading branch information
turkenh authored May 2, 2023
2 parents 913df5d + 244a513 commit a1d3eb9
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,20 @@ USE_HELM3 = true
IMAGES = provider-helm
-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 @@ -63,19 +77,6 @@ xpkg.build.provider-helm: do.build.images
-include build/makelib/local.mk

local-dev: local.up local.deploy.crossplane
# ====================================================================================
# 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
Expand Down

0 comments on commit a1d3eb9

Please sign in to comment.