site: move website/ -> site/

This commit is contained in:
Simon Michael 2010-05-21 18:19:00 +00:00
parent 35f87499f7
commit 6ce494a3ec
10 changed files with 7 additions and 6 deletions

View File

@ -302,15 +302,16 @@ docs: site apidocs
# build the hledger.org website
# Requires hakyll (cabal install hakyll)
site: website/hakyll
cd website; ./hakyll build
cd website/_site; ln -sf README.html index.html
.PHONY: site
site: site/hakyll
cd site; ./hakyll build
cd site/_site; ln -sf README.html index.html
website/hakyll: website/hakyll.hs
cd website; ghc --make hakyll.hs
site/hakyll: site/hakyll.hs
cd site; ghc --make hakyll.hs
viewsite: site
$(VIEWHTML) website/_site/index.html
$(VIEWHTML) site/_site/index.html
# generate html versions of docs (and the hledger.org website)
# work around pandoc not handling full rst image directive

View File

Before

Width:  |  Height:  |  Size: 219 KiB

After

Width:  |  Height:  |  Size: 219 KiB

View File

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 31 KiB

View File

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 26 KiB

View File

Before

Width:  |  Height:  |  Size: 84 KiB

After

Width:  |  Height:  |  Size: 84 KiB