summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 4255c4d..3579287 100644
--- a/Makefile
+++ b/Makefile
@@ -2,10 +2,8 @@ articles = $(patsubst %.md,%,$(wildcard public/*.md))
.SECONDARY:
-all: public/index.html $(addsuffix .html,$(articles)) $(addsuffix .raw.html,$(articles))
+all: public/index.html $(addsuffix .html,$(articles))
-public/%.raw.html: public/%.md Makefile
- rdiscount $< > $@
public/%.html: public/%.md pagerender.rb template.erb Makefile
./pagerender.rb $< > $@
public/index.html: $(addsuffix .md,$(articles)) index.rb template.erb Makefile