generated from accelerator-blueprints/base-blueprint
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
28 lines (21 loc) · 778 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
SHELL := /bin/bash
.ONESHELL:
.SHELLFLAGS := -eu -o pipefail -c
MAKEFLAGS += --warn-undefined-variables
MAKEFLAGS += --no-builtin-rules
help:
@printf "Usage: make [target] [VARIABLE=value]\nTargets:\n"
@grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
hooks: ## Setup pre commit.
@pre-commit install
@pre-commit gc
validate: ## Validate files with pre-commit hooks
@pre-commit run --all-files
cleanup: ## Cleanup folders
@find . -type d -name "node_modules" -prune -exec rm -rf {} \;
# @find . -type f -name "*.lock" -prune -exec rm {} \;
DIRECTORY := with-tests/eks
run: ## Run it
@scripts/run.sh $(DIRECTORY)
install: ## Install dependencies
@scripts/install.sh $(DIRECTORY)