summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 358f21d..ef8b347 100644
--- a/Makefile
+++ b/Makefile
@@ -1,11 +1,11 @@
-TARGETS=index.html
+TARGETS=index.html game.html
-all: $(TARGETS)
-
clean:
rm -f $(TARGETS)
+all: $(TARGETS)
+
%.html: %.html.coffee
(sh -c "coffee $< >$@.new" && mv $@.new $@ && touch -r $< $@) || rm -f $@