summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 166b9bd..36cd99a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,5 @@
TARGETS=index.html game.html
-
clean:
rm -f $(TARGETS)
@@ -11,7 +10,9 @@ all: $(TARGETS)
(sh -c "coffee $< >$@.new" && mv $@.new $@ && touch -r $< $@) || rm -f $@
%.appcache: %.html
- touch -r $< $@
+ sleep 1
+ # touch $@
+ echo >>$@
%.js: %.coffee
coffee -bc $<