From 4a81bf5b7a307d9b448f98ffcaa489be2227d1f2 Mon Sep 17 00:00:00 2001 From: Oscar Najera Date: Fri, 20 Oct 2023 12:46:05 +0200 Subject: Local tachyons --- makefile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 makefile (limited to 'makefile') 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 -- cgit v1.2.3