From 48db255444d5f882097c1c417976ac0b9390f1e7 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Thu, 22 Sep 2011 22:24:02 +0000 Subject: [PATCH] tools: hakyll.hs -> site.hs to keep it working on mac --- Makefile | 18 +++++++++--------- site/{hakyll.hs => site.hs} | 0 2 files changed, 9 insertions(+), 9 deletions(-) rename site/{hakyll.hs => site.hs} (100%) diff --git a/Makefile b/Makefile index 0435d69cd..d8e0bc390 100644 --- a/Makefile +++ b/Makefile @@ -498,20 +498,20 @@ docs: site codedocs # build the hledger.org website # Requires hakyll (cabal install hakyll) .PHONY: site -site: site/hakyll - cd site; ./hakyll build +site: site/site + cd site; ./site build -cleansite: site/hakyll - cd site; ./hakyll clean +cleansite: site/site + cd site; ./site clean -previewsite: site/hakyll - cd site; ./hakyll preview +previewsite: site/site + cd site; ./site preview -site/hakyll: site/hakyll.hs - cd site; ghc --make hakyll.hs $(PREFERMACUSRLIBFLAGS) +site/site: site/site.hs + cd site; ghc --make site.hs $(PREFERMACUSRLIBFLAGS) autosite: - cd site; $(AUTOBUILD) hakyll.hs -o hakyll $(PREFERMACUSRLIBFLAGS) --run preview + cd site; $(AUTOBUILD) site.hs -o site $(PREFERMACUSRLIBFLAGS) --run preview viewsite: site $(VIEWHTML) site/_site/index.html diff --git a/site/hakyll.hs b/site/site.hs similarity index 100% rename from site/hakyll.hs rename to site/site.hs