website/Makefile

10 lines
308 B
Makefile
Raw Normal View History

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