2019-11-04 12:45:00 +01:00
|
|
|
all: index.html app.js app.css
|
|
|
|
.PHONY: all
|
|
|
|
|
2023-06-08 18:53:06 +02:00
|
|
|
index.html: index.html.haml app.js app.css
|
|
|
|
haml render $< >$@
|
2019-11-04 12:45:00 +01:00
|
|
|
|
|
|
|
app.js: app.js.coffee
|
2023-06-08 18:53:06 +02:00
|
|
|
coffee -cs <$< >$@
|
2019-11-04 12:45:00 +01:00
|
|
|
|
|
|
|
app.css: app.css.sass
|
2023-06-08 18:53:06 +02:00
|
|
|
sass $< $@
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f index.html app.js app.css
|