index.html: fix a typo s/log/long/ and improve wording
[SaveMySugar/savemysugar-website.git] / Makefile
1 DESTDIR := css
2
3 SOURCES := $(wildcard [^_]*.scss)
4 COMPILED := $(SOURCES:.scss=.css)
5
6 update: $(COMPILED)
7
8 clean:
9         rm -rf $(DESTDIR) .sass-cache
10
11 %.css: %.scss
12         [ -d $(DESTDIR) ] || mkdir -p $(DESTDIR)
13         scss --compass --unix-newlines -t expanded --sourcemap=none $< $(DESTDIR)/$@