summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 0 insertions, 13 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index da246f1..0000000
--- a/Makefile
+++ /dev/null
@@ -1,13 +0,0 @@
-TARGETS=index.html
-
-all: $(TARGETS)
-
-clean:
- rm -f $(TARGETS)
-
-%.html: %.html.coffee
- (sh -c "coffee $< >$@.new" && mv $@.new $@ && touch -r $< $@) || rm -f $@
-
-%.html: %.htmlcup
- (sh -c "coffee $< >$@.new" && mv $@.new $@ && touch -r $< $@) || rm -f $@
-