summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2013-12-21 23:15:06 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2013-12-21 23:15:06 -0500
commit58af7f60bf6cf3700109124568273e00e1d6e674 (patch)
tree54ec77fb6297c08a1457169cfd8458f4ab919876 /Makefile
parent3644a310dd3b1081ea864f3bafce385beb657491 (diff)
index: sort the posts by date
I originally didn't want posts to be tied to the date (inspired by <http://swombat.com/2011/5/26/real-value-we>). But, I've realized that for several reasons, dates are important. I've waffled quite a bit on this decision.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c575f58..c573790 100644
--- a/Makefile
+++ b/Makefile
@@ -8,6 +8,6 @@ all: public/index.html $(addsuffix .html,$(articles))
public/%.html: public/%.md pagerender.rb template.erb Makefile
./pagerender.rb $< > $@
public/index.md: $(addsuffix .md,$(articles)) index.rb Makefile
- ./index.rb $(sort $(filter-out Makefile index.rb public/index.md,$^)) > $@
+ ./index.rb $(filter-out Makefile index.rb public/index.md,$^) > $@
clean:
rm -f -- public/*.html public/index.md