summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2013-10-12 20:48:04 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2013-10-12 20:48:04 -0400
commitf669a8342a9bb227fa6cb80b090cb8bd4e6e48ce (patch)
treefe527c45602fcd51282b763578acdc876c9e79dc /Makefile
parent9222fdb099baac765dd5b8c6c5384c8f6e4e6aca (diff)
don't generate .raw.html files anymore
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