aboutsummaryrefslogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/makefile b/makefile
index b8478cc..e656e22 100644
--- a/makefile
+++ b/makefile
@@ -3,19 +3,19 @@
#
# @file
# @version 0.1
-scss = assets/scss/
-cli = node_modules/tachyons-cli/cli.js
-.PHONY = css
+css = assets/css
+
+.PHONY = css deps
SRC = $(addsuffix .css, $(addprefix $(scss), pretachyons tables))
-css: $(scss)tachyons.css
+css: $(css)/tailwind.css
-$(scss)tachyons.css: $(scss)pretachyons.css $(cli)
- $(cli) $< > $@
+$(css)/tailwind.css: $(css)/input.css | deps
+ npx tailwindcss -i $< -o $@
-$(cli):
+deps:
npm install
# end