poster/Makefile

18 lines
441 B
Makefile

STYLES = fonts/Roboto.css fonts/Asset.css fonts/ThroughStruggleDEMO.css fonts/RobotoSlab.css style.css fonts/Tinos.css fonts/PT_Mono.css fonts/PT_Sans.css fonts/Vollkorn.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