From c0529119f91a74ff27a10a3837d9c5de02e5a84e Mon Sep 17 00:00:00 2001 From: paku <paku@skyizwhite.dev> Date: Sat, 3 Feb 2024 00:12:59 +0900 Subject: [PATCH] Add Makefile --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..2ae9d68 --- /dev/null +++ b/Makefile @@ -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}'