2016-02-13 20:39:14 +00:00
|
|
|
all: static/index.html static/index.js static/officehours.js
|
2016-02-08 02:37:34 +00:00
|
|
|
|
2016-02-13 17:13:25 +00:00
|
|
|
static/%.html: source/%.haml
|
|
|
|
haml --unix-newlines --no-escape-attrs --double-quote-attributes $< > $@
|
|
|
|
|
2016-02-13 20:39:14 +00:00
|
|
|
static/%.js: source/%.coffee
|
|
|
|
coffee --compile -o $(dir $@) $<
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm static/*.html static/*.js
|
|
|
|
|
2016-02-13 17:13:25 +00:00
|
|
|
|