poster/Makefile

18 lines
504 B
Makefile
Raw Normal View History

2017-02-28 14:39:54 +01:00
2018-03-09 18:25:11 +01: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 fonts/Italianno.css fonts/Cardo.css fonts/CinzelDecorative.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