summaryrefslogtreecommitdiff
path: root/Makefile
blob: 085134f7a0219b1c8c01452009bb5e46d194362a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
CSS=res/client/css
ROOT_SCSS=$(CSS)/style.scss
TARGET=$(CSS)/style.css
SCSS=$(ROOT_SCSS) $(wildcard $(CSS)/by-view/*.scss) $(wildcard $(CSS)/partials/*.scss) $(wildcard $(CSS)/modules/*.scss) $(wildcard $(CSS)/vendor/*.scss)

%.css: %.scss
	sass $< $@

all: css

css: $(TARGET)

force: touch css

touch:
	touch $(ROOT_SCSS)


$(CSS)/style.css: $(SCSS)