diff options
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 |