zeitschplitter/Makefile

12 lines
163 B
Makefile
Raw Normal View History

2019-11-04 12:45:00 +01:00
all: index.html app.js app.css
.PHONY: all
index.html: index.html.haml
haml $^ $@
app.js: app.js.coffee
coffee -cs >$@ <$^
app.css: app.css.sass
sassc $^ $@