aboutsummaryrefslogtreecommitdiffstats
path: root/makefile
blob: b8478cc69d8c819c896e98673088d7a5e790ab7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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