2008-12-10 23:46:18 +03:00
|
|
|
# executables for "make bench". prepend ./ to these if not in $PATH
|
2008-12-10 21:43:14 +03:00
|
|
|
BENCHEXES=hledger ledger
|
|
|
|
|
2008-12-05 12:28:24 +03:00
|
|
|
BUILD=ghc --make hledger.hs -o hledger -O
|
2009-01-20 06:48:05 +03:00
|
|
|
BUILDFLAGS=-DVTY
|
2008-10-10 05:44:40 +04:00
|
|
|
build: tag
|
2009-01-20 06:48:05 +03:00
|
|
|
$(BUILD) $(BUILDFLAGS)
|
2007-05-02 06:50:10 +04:00
|
|
|
|
2008-12-05 12:28:24 +03:00
|
|
|
BUILDO2=ghc --make hledger.hs -o hledgero2 -O2 -fvia-C
|
|
|
|
buildo2:
|
|
|
|
$(BUILDO2)
|
|
|
|
|
2008-12-10 21:43:14 +03:00
|
|
|
# rebuild all with normal optimisation
|
2008-12-05 11:51:27 +03:00
|
|
|
rebuild: clean build
|
|
|
|
|
2008-12-05 12:28:24 +03:00
|
|
|
# recompile and run tests whenever a module changes
|
|
|
|
# see http://searchpath.org , you may need the patched version from
|
|
|
|
# http://joyful.com/repos/searchpath
|
2009-01-20 06:48:05 +03:00
|
|
|
CICMD=test
|
2008-11-08 23:25:22 +03:00
|
|
|
continuous ci:
|
2009-01-20 06:48:05 +03:00
|
|
|
sp --no-exts --no-default-map -o hledger ghc --make hledger.hs $(BUILDFLAGS) --run $(CICMD)
|
2008-10-17 20:59:05 +04:00
|
|
|
|
2008-12-10 21:43:14 +03:00
|
|
|
# run code tests
|
2008-12-05 12:28:24 +03:00
|
|
|
test:
|
|
|
|
./hledger.hs test
|
|
|
|
|
|
|
|
PROFBIN=hledgerp
|
|
|
|
BUILDPROF=ghc --make hledger.hs -prof -auto-all -o $(PROFBIN)
|
|
|
|
RUNPROF=./$(PROFBIN) +RTS -p -RTS
|
|
|
|
PROFCMD=-s balance
|
|
|
|
TIME=`date +"%Y%m%d%H%M"`
|
2008-12-05 03:38:19 +03:00
|
|
|
profile:
|
|
|
|
@echo "Profiling $(PROFCMD)"
|
|
|
|
$(BUILDPROF)
|
|
|
|
$(RUNPROF) $(PROFCMD) >/dev/null
|
|
|
|
tools/simplifyprof.hs $(PROFBIN).prof >simple.prof
|
|
|
|
cp simple.prof profs/$(TIME).prof
|
2007-07-03 13:11:03 +04:00
|
|
|
cat simple.prof
|
2007-05-02 06:50:10 +04:00
|
|
|
|
2008-11-26 22:00:55 +03:00
|
|
|
# run performance benchmarks and save results in profs
|
2009-01-17 21:40:27 +03:00
|
|
|
bench: buildbench sampleledgers
|
2008-12-10 23:46:18 +03:00
|
|
|
./bench $(BENCHEXES) | tee profs/`date +%Y%m%d%H%M%S`.bench
|
|
|
|
|
|
|
|
buildbench:
|
|
|
|
ghc --make tools/bench.hs
|
|
|
|
rm -f bench; ln -s tools/bench
|
2008-11-26 22:00:55 +03:00
|
|
|
|
2009-01-17 21:40:27 +03:00
|
|
|
sampleledgers:
|
|
|
|
ghc -e 'putStr $$ unlines $$ replicate 1000 "!include sample.ledger"' >sample1000.ledger
|
|
|
|
# ghc -e 'putStr $$ unlines $$ replicate 10000 "!include sample.ledger"' >sample10000.ledger
|
|
|
|
# ghc -e 'putStr $$ unlines $$ replicate 100000 "!include sample.ledger"' >sample10000.ledger
|
|
|
|
|
2009-01-25 11:09:09 +03:00
|
|
|
# send unpushed patches to the mail list
|
2009-01-25 10:48:41 +03:00
|
|
|
send:
|
|
|
|
darcs send http://joyful.com/repos/hledger --to=hledger@googlegroups.com --edit-description
|
|
|
|
|
2009-01-25 11:09:09 +03:00
|
|
|
# push patches to the main repo with ssh
|
|
|
|
push:
|
|
|
|
darcs push joyful.com:/repos/hledger
|
|
|
|
|
|
|
|
# build a cabal release, tag the repo and upload to hackage
|
2009-01-20 08:57:25 +03:00
|
|
|
VERSION=`egrep 'version *=' Options.hs | perl -pe 's/.*"(.*?)"/\1/'`
|
2008-11-24 01:15:51 +03:00
|
|
|
release:
|
|
|
|
cabal sdist && darcs tag $(VERSION) && cabal upload dist/hledger-$(VERSION).tar.gz
|
|
|
|
|
2008-10-18 08:34:41 +04:00
|
|
|
tag:
|
|
|
|
rm -f TAGS; hasktags -e *hs Ledger/*hs
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f {,Ledger/}*{.o,.hi,~} darcs-amend-record*
|
|
|
|
|
|
|
|
Clean: clean clean-docs
|
|
|
|
rm -f hledger TAGS tags
|
|
|
|
|
2008-09-29 03:27:46 +04:00
|
|
|
# docs
|
|
|
|
|
2008-11-24 00:49:04 +03:00
|
|
|
DOCS=README NEWS
|
|
|
|
|
2008-11-09 01:41:20 +03:00
|
|
|
docs: html pdf api-doc-frames
|
|
|
|
|
|
|
|
html:
|
2008-11-24 00:49:04 +03:00
|
|
|
for d in $(DOCS); do rst2html $$d >doc/$$d.html; done
|
2008-11-24 01:29:17 +03:00
|
|
|
cd doc; ln -f -s README.html index.html
|
2008-11-09 01:41:20 +03:00
|
|
|
|
|
|
|
pdf:
|
2008-11-24 00:49:04 +03:00
|
|
|
for d in $(DOCS); do rst2pdf $$d -o doc/$$d.pdf; done
|
2008-11-09 01:41:20 +03:00
|
|
|
|
2008-09-29 03:27:46 +04:00
|
|
|
MAIN=hledger.hs
|
|
|
|
|
|
|
|
api-doc-dir:
|
|
|
|
mkdir -p api-doc
|
|
|
|
|
2008-10-03 11:40:28 +04:00
|
|
|
HSCOLOUR=HsColour -css
|
|
|
|
colourised-source hscolour: api-doc-dir
|
2008-09-29 03:27:46 +04:00
|
|
|
echo "Generating colourised source" ; \
|
2008-10-03 06:02:25 +04:00
|
|
|
for f in *hs Ledger/*hs; do \
|
2008-10-03 11:40:28 +04:00
|
|
|
$(HSCOLOUR) -anchor $$f -oapi-doc/`echo "src/"$$f | sed -e's%/%-%g' | sed -e's%\.hs$$%.html%'` ; \
|
2008-09-29 03:27:46 +04:00
|
|
|
done ; \
|
2008-10-01 14:18:07 +04:00
|
|
|
cp api-doc/src-hledger.html api-doc/src-Main.html ; \
|
2008-09-29 03:27:46 +04:00
|
|
|
HsColour -print-css >api-doc/hscolour.css
|
|
|
|
|
2008-10-03 11:40:28 +04:00
|
|
|
# nb --ignore-all-exports means these are actually implementation docs
|
|
|
|
HADDOCK=haddock -B `ghc --print-libdir` --no-warnings --ignore-all-exports
|
|
|
|
api-doc-with-source haddock: api-doc-dir colourised-source $(MAIN)
|
|
|
|
echo "Generating haddock api docs" ; \
|
|
|
|
$(HADDOCK) -o api-doc -h --source-module=src-%{MODULE/./-}.html $(filter-out %api-doc-dir colourised-source,$^) ; \
|
|
|
|
cp api-doc/index.html api-doc/modules-index.html
|
|
|
|
#--source-entity=src-%{MODULE/./-}.html#%N
|
|
|
|
|
2008-09-29 03:27:46 +04:00
|
|
|
#generate a hoogle index
|
|
|
|
hoogleindex: $(MAIN)
|
|
|
|
echo "Generating hoogle index" ; \
|
|
|
|
mkdir -p hoogle && \
|
2008-10-03 11:40:28 +04:00
|
|
|
$(HADDOCK) -o hoogle --hoogle $^ && \
|
2008-09-29 03:27:46 +04:00
|
|
|
cd hoogle && \
|
|
|
|
hoogle --convert=main.txt --output=default.hoo
|
|
|
|
|
|
|
|
#set up the hoogle web interface
|
|
|
|
#uses a hoogle source tree configured with --datadir=., patched to fix haddock urls/target frame
|
|
|
|
HOOGLESRC=/usr/local/src/hoogle
|
|
|
|
HOOGLE=$(HOOGLESRC)/dist/build/hoogle/hoogle
|
|
|
|
HOOGLEVER=`$(HOOGLE) --version |tail -n 1 | sed -e 's/Version /hoogle-/'`
|
|
|
|
hoogleweb: hoogleindex
|
|
|
|
echo "Configuring hoogle web interface" ; \
|
|
|
|
if test -f $(HOOGLE) ; then \
|
|
|
|
mkdir -p hoogle && \
|
|
|
|
cd hoogle && \
|
|
|
|
rm -f $(HOOGLEVER) && \
|
|
|
|
ln -s . $(HOOGLEVER) && \
|
|
|
|
cp -r $(HOOGLESRC)/src/res/ . && \
|
|
|
|
cp -p $(HOOGLE) index.cgi && \
|
|
|
|
touch log.txt && chmod 666 log.txt ; \
|
|
|
|
else \
|
|
|
|
echo "Could not find $(HOOGLE) in the hoogle source tree" ; \
|
|
|
|
fi
|
2008-10-03 11:40:28 +04:00
|
|
|
|
|
|
|
# munge haddock and hoogle into a rough but useful framed layout
|
|
|
|
# ensure that the hoogle cgi is built with base target "main"
|
2008-11-09 01:41:20 +03:00
|
|
|
api-doc-frames: api-doc-with-source hoogleweb
|
2008-10-03 11:40:28 +04:00
|
|
|
echo "Converting api docs to frames" ; \
|
|
|
|
sed -i -e 's%^></HEAD%><base target="main"></HEAD%' api-doc/modules-index.html ; \
|
|
|
|
cp doc/misc/api-doc-frames.html api-doc/index.html ; \
|
|
|
|
cp doc/misc/hoogle-small.html hoogle
|
|
|
|
|
|
|
|
BROWSER=open
|
2008-12-10 21:43:14 +03:00
|
|
|
test-docs: docs
|
2008-10-03 11:40:28 +04:00
|
|
|
$(BROWSER) api-doc/index.html
|
2008-12-10 21:43:14 +03:00
|
|
|
# $(BROWSER) doc/README.html
|
2008-10-03 11:40:28 +04:00
|
|
|
|
|
|
|
clean-docs:
|
|
|
|
rm -rf api-doc hoogle
|
|
|
|
|
2008-10-18 08:34:41 +04:00
|
|
|
# misc
|
|
|
|
|
2008-10-17 22:04:24 +04:00
|
|
|
show-changes:
|
|
|
|
@echo Changes since last release:
|
|
|
|
@echo
|
|
|
|
@darcs changes --from-tag . | grep '*'
|
|
|
|
|
2008-11-24 00:50:38 +03:00
|
|
|
show-authors:
|
|
|
|
@echo Patch authors since last release:
|
|
|
|
@echo
|
|
|
|
@darcs changes --from-tag . |grep '^\w' |cut -c 31- |sort |uniq
|
|
|
|
|
2008-10-18 08:34:41 +04:00
|
|
|
sloc:
|
2008-11-24 00:50:47 +03:00
|
|
|
@echo "test code:"
|
2008-10-18 08:34:41 +04:00
|
|
|
@sloccount Tests.hs | grep haskell:
|
2008-11-24 00:50:47 +03:00
|
|
|
@echo "non-test code:"
|
2008-10-18 08:34:41 +04:00
|
|
|
@sloccount `ls {,Ledger/}*.hs |grep -v Tests.hs` | grep haskell:
|
2008-10-03 11:40:28 +04:00
|
|
|
|