Add Makefile

This commit is contained in:
Akira Tempaku 2024-02-03 00:12:59 +09:00
parent 5717f11e2d
commit c0529119f9

9
Makefile Normal file
View file

@ -0,0 +1,9 @@
install: ## Install dependencies
@qlot install ; npm i
css: ## Scan and build tailwindcss
@npx tailwindcss -o ./static/tailwind.css --watch
help: ## Show options
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | \
awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'