aboutsummaryrefslogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
authorOscar Najera <hi@oscarnajera.com>2023-10-20 12:46:05 +0200
committerOscar Najera <hi@oscarnajera.com>2023-10-20 14:20:27 +0200
commit4a81bf5b7a307d9b448f98ffcaa489be2227d1f2 (patch)
treedc966ac9969608da6cbd177c6acd409421cbba8e /makefile
parent10207f629e1fca6497a0dbbd79e416536ee0958f (diff)
downloadhugo-minimalist-theme-4a81bf5b7a307d9b448f98ffcaa489be2227d1f2.tar.gz
hugo-minimalist-theme-4a81bf5b7a307d9b448f98ffcaa489be2227d1f2.tar.bz2
hugo-minimalist-theme-4a81bf5b7a307d9b448f98ffcaa489be2227d1f2.zip
Local tachyons
Diffstat (limited to 'makefile')
-rw-r--r--makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/makefile b/makefile
new file mode 100644
index 0000000..b8478cc
--- /dev/null
+++ b/makefile
@@ -0,0 +1,21 @@
+##
+# Project Title
+#
+# @file
+# @version 0.1
+scss = assets/scss/
+cli = node_modules/tachyons-cli/cli.js
+
+.PHONY = css
+
+SRC = $(addsuffix .css, $(addprefix $(scss), pretachyons tables))
+
+css: $(scss)tachyons.css
+
+$(scss)tachyons.css: $(scss)pretachyons.css $(cli)
+ $(cli) $< > $@
+
+$(cli):
+ npm install
+
+# end