poster/Makefile

18 lines
441 B
Makefile
Raw Normal View History

2017-02-28 14:39:54 +01:00
2017-09-06 23:13:13 +02:00
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
2017-02-28 14:39:54 +01:00
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