diff options
author | Oscar Najera <hi@oscarnajera.com> | 2023-10-20 12:46:05 +0200 |
---|---|---|
committer | Oscar Najera <hi@oscarnajera.com> | 2023-10-20 14:20:27 +0200 |
commit | 4a81bf5b7a307d9b448f98ffcaa489be2227d1f2 (patch) | |
tree | dc966ac9969608da6cbd177c6acd409421cbba8e /makefile | |
parent | 10207f629e1fca6497a0dbbd79e416536ee0958f (diff) | |
download | hugo-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-- | makefile | 21 |
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 |