zeitschplitter/Makefile

15 lines
226 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 app.js app.css
haml render $< >$@
2019-11-04 12:45:00 +01:00
app.js: app.js.coffee
coffee -cs <$< >$@
2019-11-04 12:45:00 +01:00
app.css: app.css.sass
sass $< $@
clean:
rm -f index.html app.js app.css