summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMichele Bini <michele.bini@gmail.com>2014-12-06 09:24:37 (GMT)
committerMichele Bini <michele.bini@gmail.com>2014-12-06 09:24:37 (GMT)
commitf58ee45f00a958739e67c8b1279a178e80e2ba22 (patch)
treefca61568abb2f567aeb4eecd2576de035f11ac4f /Makefile
parent18fec0b3c7d5daa92c36550962d6f6f95145b251 (diff)
Compile main page; build rule
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 $<