diff options
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/GNUmakefile b/GNUmakefile new file mode 100644 index 0000000..bb10536 --- /dev/null +++ b/GNUmakefile @@ -0,0 +1,18 @@ +SHELL:=bash + +.PHONY: check +check: ## make check # Check syntax of eventline jobs + eslint index.js + +.PHONY: init +init: ## make init # initialize project dependencies + npm install eslint + +.PHONY: serve +serve: ## make serve # run a python web server + python -m http.server 8000 + +help: + @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}' + +.DEFAULT_GOAL := help |