18 lines
386 B
Makefile
18 lines
386 B
Makefile
|
|
||
|
STYLES = fonts/Roboto.css fonts/Asset.css fonts/ThroughStruggleDEMO.css fonts/RobotoSlab.css style.css fonts/Tinos.css
|
||
|
|
||
|
all: index.html $(STYLES)
|
||
|
|
||
|
index.html: index.html.haml
|
||
|
@echo HAML $< $@
|
||
|
@bundle exec haml $< $@.tmp && mv $@.tmp $@
|
||
|
|
||
|
%.css: %.scss
|
||
|
@echo SASS $< $@
|
||
|
@bundle exec sass --sourcemap=none $< $@.tmp && mv $@.tmp $@
|
||
|
|
||
|
clean:
|
||
|
rm $(STYLES) index.html
|
||
|
|
||
|
.PHONY: all clean
|