Skip to content

Commit

Permalink
Makefile: add target "all"
Browse files Browse the repository at this point in the history
This brings this Makefile in line with the standard "make all", we want to support for all plugins.
  • Loading branch information
martinrode committed May 5, 2023
1 parent e15893f commit e39756f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ BUILD_DIR = build
help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'

all: build ## build all

build: clean code ## build all (creates build folder)
mkdir -p $(BUILD_DIR)/$(PLUGIN_NAME)
cp manifest.master.yml $(BUILD_DIR)/$(PLUGIN_NAME)/manifest.yml
Expand Down

0 comments on commit e39756f

Please sign in to comment.