2009-01-25 12:00:57 +03:00
|
|
|
# hledger project makefile
|
2008-12-10 21:43:14 +03:00
|
|
|
|
2010-09-03 06:08:47 +04:00
|
|
|
# ghc 6.12 executables need a locale
|
|
|
|
export LANG=en_US.UTF-8
|
|
|
|
|
2010-05-22 04:46:32 +04:00
|
|
|
# command line to run during "make prof" and "make heap"
|
2010-07-13 10:30:06 +04:00
|
|
|
PROFCMD=bin/hledgerp -f data/1000x1000x10.journal balance >/dev/null
|
2009-05-29 23:26:09 +04:00
|
|
|
|
2009-06-04 05:33:31 +04:00
|
|
|
# command to run during "make coverage"
|
|
|
|
COVCMD=test
|
|
|
|
|
2010-02-13 21:39:49 +03:00
|
|
|
# executables to run during "make simplebench". They should be on the path
|
2010-05-23 01:24:07 +04:00
|
|
|
# or in the current directory. hledger executables for benchmarking should
|
|
|
|
# generally be the standard optimised cabal build, constrained to parsec 2.
|
2011-04-18 11:26:58 +04:00
|
|
|
BENCHEXES=hledger-0.12.1 hledger-0.13 hledger-0.14-ghc6.12.3 ledger
|
2010-07-19 07:36:14 +04:00
|
|
|
#BENCHEXES=hledger
|
2009-06-03 00:37:34 +04:00
|
|
|
|
2010-02-13 23:21:08 +03:00
|
|
|
# misc. tools
|
2010-09-06 02:51:51 +04:00
|
|
|
#VIEWHTML=open -a 'Google Chrome'
|
|
|
|
VIEWHTML=google-chrome
|
2010-09-10 02:54:34 +04:00
|
|
|
VIEWPS=google-chrome
|
|
|
|
VIEWPDF=google-chrome
|
2010-02-13 23:21:08 +03:00
|
|
|
PRINT=lpr
|
2009-05-29 23:49:11 +04:00
|
|
|
|
2010-11-14 22:40:57 +03:00
|
|
|
PACKAGES=\
|
|
|
|
hledger-lib \
|
|
|
|
hledger \
|
|
|
|
hledger-web \
|
2010-11-26 22:35:13 +03:00
|
|
|
hledger-vty \
|
|
|
|
hledger-chart
|
2010-11-14 22:40:57 +03:00
|
|
|
INCLUDEPATHS=\
|
|
|
|
-ihledger-lib \
|
|
|
|
-ihledger \
|
|
|
|
-ihledger-web \
|
2010-11-26 22:35:13 +03:00
|
|
|
-ihledger-vty \
|
|
|
|
-ihledger-chart
|
2010-09-10 02:54:34 +04:00
|
|
|
MAIN=hledger/hledger.hs
|
2011-06-03 21:10:27 +04:00
|
|
|
|
2010-11-20 00:39:17 +03:00
|
|
|
# all source files in the project (plus a few strays like Setup.hs & hlint.hs)
|
2009-09-23 18:49:04 +04:00
|
|
|
SOURCEFILES:= \
|
2010-09-10 02:54:34 +04:00
|
|
|
hledger/*hs \
|
2010-12-06 00:14:45 +03:00
|
|
|
hledger/Hledger/*/*hs \
|
2010-09-10 02:54:34 +04:00
|
|
|
hledger-*/*hs \
|
2010-09-24 06:06:58 +04:00
|
|
|
hledger-*/Hledger/*hs \
|
|
|
|
hledger-*/Hledger/*/*hs
|
2011-06-03 21:10:27 +04:00
|
|
|
|
2010-11-20 00:39:17 +03:00
|
|
|
# a more careful list suitable for for haddock
|
2011-08-19 22:39:13 +04:00
|
|
|
HADDOCKSOURCEFILES:= \
|
2011-08-19 22:55:26 +04:00
|
|
|
hledger-lib/*hs \
|
2010-11-20 00:39:17 +03:00
|
|
|
hledger-lib/Hledger/*hs \
|
|
|
|
hledger-lib/Hledger/*/*hs \
|
2011-07-19 05:00:08 +04:00
|
|
|
hledger/Hledger/*hs \
|
2010-11-20 00:39:17 +03:00
|
|
|
hledger/Hledger/Cli/*hs \
|
2011-06-03 21:10:27 +04:00
|
|
|
hledger-web/*hs \
|
|
|
|
hledger-vty/Hledger/*/*hs
|
2011-08-19 22:55:26 +04:00
|
|
|
# hledger-chart/Hledger/*hs
|
2011-06-03 21:10:27 +04:00
|
|
|
# hledger-chart/Hledger/*/*hs
|
|
|
|
|
2011-04-22 23:04:47 +04:00
|
|
|
# just the library-exporting files for haddock, similar to what hackage shows
|
2011-08-19 22:39:13 +04:00
|
|
|
HADDOCKLIBSOURCEFILES:= \
|
2011-08-19 22:55:26 +04:00
|
|
|
hledger-lib/*hs \
|
2011-04-22 23:04:47 +04:00
|
|
|
hledger-lib/Hledger/*hs \
|
|
|
|
hledger-lib/Hledger/*/*hs \
|
2011-07-19 05:00:08 +04:00
|
|
|
hledger/Hledger/*hs \
|
2011-08-19 22:55:26 +04:00
|
|
|
hledger/Hledger/*/*hs
|
2011-06-03 21:10:27 +04:00
|
|
|
|
2010-09-10 02:54:34 +04:00
|
|
|
VERSIONHS=hledger/Hledger/Cli/Version.hs
|
|
|
|
CABALFILES:= \
|
|
|
|
hledger/hledger.cabal \
|
|
|
|
hledger-*/*.cabal
|
|
|
|
# DOCFILES:=README DOWNLOAD MANUAL DEVELOPMENT NEWS SCREENSHOTS CONTRIBUTORS
|
2009-06-03 00:37:34 +04:00
|
|
|
PATCHLEVEL:=$(shell expr `darcs changes --count --from-tag=\\\\\.` - 1)
|
2009-06-05 13:42:44 +04:00
|
|
|
WARNINGS:=-W -fwarn-tabs #-fwarn-orphans -fwarn-simple-patterns -fwarn-monomorphism-restriction -fwarn-name-shadowing
|
2010-12-07 04:54:51 +03:00
|
|
|
DEFINEFLAGS:=
|
2010-07-09 06:11:12 +04:00
|
|
|
PREFERMACUSRLIBFLAGS=-L/usr/lib
|
2010-12-07 04:54:51 +03:00
|
|
|
BUILDFLAGS:=-DMAKE $(WARNINGS) $(INCLUDEPATHS) $(PREFERMACUSRLIBFLAGS) -DPATCHLEVEL=$(PATCHLEVEL)
|
|
|
|
LINUXRELEASEBUILDFLAGS:=-DMAKE $(WARNINGS) $(INCLUDEPATHS) -O2 -static -optl-static -optl-pthread
|
2010-12-11 01:07:52 +03:00
|
|
|
MACRELEASEBUILDFLAGS:=-DMAKE $(WARNINGS) $(INCLUDEPATHS) $(PREFERMACUSRLIBFLAGS) -O2 # -optl-L/usr/lib
|
2010-12-07 04:54:51 +03:00
|
|
|
#WINDOWSRELEASEBUILDFLAGS:=-DMAKE $(WARNINGS) $(INCLUDEPATHS)
|
2009-06-13 22:21:56 +04:00
|
|
|
TIME:=$(shell date +"%Y%m%d%H%M")
|
2009-06-03 00:37:34 +04:00
|
|
|
|
2010-05-24 03:45:12 +04:00
|
|
|
# file defining the current release version
|
|
|
|
VERSIONFILE=VERSION
|
2010-07-10 17:09:49 +04:00
|
|
|
# two or three-part version string, whatever's in VERSION
|
2010-05-24 03:45:12 +04:00
|
|
|
VERSION:=$(shell grep -v '^--' $(VERSIONFILE))
|
2010-07-10 17:09:49 +04:00
|
|
|
# three-part version string, 0-padded if necessary
|
2010-05-24 03:45:12 +04:00
|
|
|
ifeq ($(shell ghc -e "length (filter (=='.') \"$(VERSION)\")"), 1)
|
|
|
|
VERSION3:=$(VERSION).0
|
|
|
|
else
|
|
|
|
VERSION3:=$(VERSION)
|
|
|
|
endif
|
|
|
|
# files which should be updated when the version changes
|
|
|
|
VERSIONSENSITIVEFILES=\
|
2010-09-10 02:54:34 +04:00
|
|
|
$(VERSIONHS) \
|
2010-07-18 03:09:24 +04:00
|
|
|
MANUAL.markdown \
|
2010-07-25 02:08:54 +04:00
|
|
|
DOWNLOAD.markdown \
|
2010-09-10 02:54:34 +04:00
|
|
|
$(CABALFILES) \
|
2010-12-07 04:54:51 +03:00
|
|
|
hledger-web/.hledger/web/.version \
|
2010-05-24 03:45:12 +04:00
|
|
|
|
2010-12-11 01:00:42 +03:00
|
|
|
#BINARYFILENAME=$(shell touch $(VERSIONHS); runhaskell -ihledger $(MAIN) --binary-filename)
|
|
|
|
RELEASEBINARYSUFFIX:=$(shell echo "-$(VERSION)-`uname`-`arch`" | tr '[:upper:]' '[:lower:]')
|
|
|
|
|
2010-11-19 20:37:28 +03:00
|
|
|
default: tag hledger
|
2009-05-29 12:29:04 +04:00
|
|
|
|
|
|
|
######################################################################
|
2009-06-04 05:33:31 +04:00
|
|
|
# BUILDING
|
2009-05-29 12:29:04 +04:00
|
|
|
|
2010-09-10 02:54:34 +04:00
|
|
|
# set version numbers, fetch dependencies, build and install standard binaries
|
|
|
|
# and libs from all hledger packages. A good thing to run first; the other
|
|
|
|
# allcabal rules require hledger-VERSION and hledger-lib-VERSION installed.
|
|
|
|
# You may want to change the version number in VERSION file first.
|
2010-12-07 04:54:51 +03:00
|
|
|
install: allcabalinstall
|
2009-05-29 12:29:04 +04:00
|
|
|
|
2010-09-10 02:54:34 +04:00
|
|
|
# set version numbers and configure all hledger packages
|
2010-12-07 04:54:51 +03:00
|
|
|
configure: allcabalconfigure
|
2009-06-05 15:15:32 +04:00
|
|
|
|
2010-09-10 02:54:34 +04:00
|
|
|
# set version numbers and build all hledger packages
|
2010-12-07 04:54:51 +03:00
|
|
|
build: allcabalbuild
|
2009-05-29 12:29:04 +04:00
|
|
|
|
2010-09-10 02:54:34 +04:00
|
|
|
# set version numbers and cabal test all hledger packages
|
2010-12-07 04:54:51 +03:00
|
|
|
cabaltest: allcabaltest
|
2009-05-29 23:49:11 +04:00
|
|
|
|
2010-09-10 02:54:34 +04:00
|
|
|
# run a cabal command in all hledger package dirs
|
|
|
|
allcabal%:
|
2010-12-11 01:09:32 +03:00
|
|
|
for p in $(PACKAGES); do (echo doing cabal $* in $$p; cd $$p; cabal $*; echo); done
|
2009-05-29 12:29:04 +04:00
|
|
|
|
2010-09-10 02:54:34 +04:00
|
|
|
# run a command in all hledger package dirs
|
|
|
|
all%:
|
|
|
|
for p in $(PACKAGES); do (echo doing $* in $$p; cd $$p; $*); done
|
2008-10-17 20:59:05 +04:00
|
|
|
|
2010-11-26 22:35:13 +03:00
|
|
|
# auto-recompile and run (something, eg unit tests) whenever a module changes.
|
2010-09-10 05:57:41 +04:00
|
|
|
# sp is from searchpath.org, you might need the http://joyful.com/repos/searchpath version.
|
2010-12-07 04:54:51 +03:00
|
|
|
autotest:
|
2010-11-13 03:07:20 +03:00
|
|
|
rm -f bin/hledger
|
2010-11-14 22:40:57 +03:00
|
|
|
sp --no-exts --no-default-map -o bin/hledger ghc --make $(MAIN) -ihledger $(BUILDFLAGS) --run test
|
2010-09-10 05:57:41 +04:00
|
|
|
|
2010-11-26 22:35:13 +03:00
|
|
|
# as above for add-on programs
|
2010-12-07 04:54:51 +03:00
|
|
|
autoweb: linkhledgerwebdir
|
2010-11-13 03:07:20 +03:00
|
|
|
rm -f bin/hledger-web
|
2010-12-06 21:33:53 +03:00
|
|
|
sp --no-exts --no-default-map -o bin/hledger-web ghc --make hledger-web/hledger-web.hs -ihledger-web -ihledger $(BUILDFLAGS) --run --debug -B
|
2010-11-26 22:35:13 +03:00
|
|
|
|
2010-12-07 04:54:51 +03:00
|
|
|
autovty:
|
2010-11-26 22:35:13 +03:00
|
|
|
rm -f bin/hledger-vty
|
|
|
|
sp --no-exts --no-default-map -o bin/hledger-vty ghc --make hledger-vty/hledger-vty.hs -ihledger-vty -ihledger $(BUILDFLAGS) --run --help
|
|
|
|
|
2010-12-07 04:54:51 +03:00
|
|
|
autochart:
|
2010-11-26 22:35:13 +03:00
|
|
|
rm -f bin/hledger-chart
|
|
|
|
sp --no-exts --no-default-map -o bin/hledger-chart ghc --make hledger-chart/hledger-chart.hs -ihledger-chart -ihledger $(BUILDFLAGS) --run --help
|
2010-11-13 03:07:20 +03:00
|
|
|
|
2010-11-19 20:37:28 +03:00
|
|
|
# make symlinks so that running hledger-web from the top directory will
|
|
|
|
# use the in-development hledger-web support files. Cf Hledger.Web.Settings:
|
|
|
|
HLEDGERDATADIR:=.hledger
|
|
|
|
linkhledgerwebdir:
|
|
|
|
mkdir -p $(HLEDGERDATADIR); ln -sf ../hledger-web/$(HLEDGERDATADIR)/web $(HLEDGERDATADIR)/web
|
2010-02-13 23:21:08 +03:00
|
|
|
|
2009-07-15 01:51:10 +04:00
|
|
|
# build the standalone unit test runner. Requires test-framework, which
|
|
|
|
# may not work on windows.
|
2009-06-28 07:17:02 +04:00
|
|
|
tools/unittest: tools/unittest.hs
|
|
|
|
ghc --make -threaded -O2 tools/unittest.hs
|
|
|
|
|
2009-05-29 12:29:04 +04:00
|
|
|
# build the doctest runner
|
|
|
|
tools/doctest: tools/doctest.hs
|
|
|
|
ghc --make tools/doctest.hs
|
|
|
|
|
2010-02-13 21:39:49 +03:00
|
|
|
# build the simple benchmark runner. Requires tabular.
|
|
|
|
tools/simplebench: tools/simplebench.hs
|
|
|
|
ghc --make tools/simplebench.hs
|
|
|
|
|
|
|
|
# build the criterion-based benchmark runner. Requires criterion.
|
|
|
|
tools/criterionbench: tools/criterionbench.hs
|
|
|
|
ghc --make tools/criterionbench.hs
|
|
|
|
|
|
|
|
# build the progression-based benchmark runner. Requires progression.
|
|
|
|
tools/progressionbench: tools/progressionbench.hs
|
|
|
|
ghc --make tools/progressionbench.hs
|
2009-06-27 12:15:00 +04:00
|
|
|
|
2010-07-13 10:30:06 +04:00
|
|
|
# build the generatejournal tool
|
|
|
|
tools/generatejournal: tools/generatejournal.hs
|
|
|
|
ghc --make tools/generatejournal.hs
|
2009-05-29 12:29:04 +04:00
|
|
|
|
|
|
|
######################################################################
|
|
|
|
# TESTING
|
|
|
|
|
2010-09-10 02:54:34 +04:00
|
|
|
|
|
|
|
######################################################################
|
|
|
|
# DOCUMENTATION
|
|
|
|
|
|
|
|
|
|
|
|
######################################################################
|
|
|
|
# RELEASING
|
|
|
|
|
|
|
|
|
|
|
|
######################################################################
|
|
|
|
# MISCELLANEOUS
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
######################################################################
|
|
|
|
# OLD PRE PKG SPLIT
|
|
|
|
######################################################################
|
|
|
|
|
|
|
|
######################################################################
|
|
|
|
# BUILDING
|
|
|
|
|
2010-12-11 01:09:32 +03:00
|
|
|
hledgerall: bin/hledger hledger-web hledger-vty hledger-chart
|
2010-11-29 04:15:08 +03:00
|
|
|
|
2011-03-13 02:30:57 +03:00
|
|
|
# force a compile even if binary exists, since we don't specify dependencies
|
|
|
|
.PHONY: bin/hledger hledger-web hledger-vty hledger-chart
|
|
|
|
|
2010-12-11 01:34:01 +03:00
|
|
|
# build developer binaries, as quickly as possible
|
|
|
|
# this one is named bin/ to avoid case clash on mac
|
|
|
|
bin/hledger:
|
2010-11-29 04:15:08 +03:00
|
|
|
ghc --make $(MAIN) -o bin/hledger $(BUILDFLAGS)
|
|
|
|
|
2011-03-13 02:30:57 +03:00
|
|
|
bin/hledger-web:
|
2010-11-29 04:15:08 +03:00
|
|
|
ghc --make hledger-web/hledger-web.hs -o bin/hledger-web -ihledger-web -ihledger $(BUILDFLAGS)
|
|
|
|
|
2011-03-13 02:30:57 +03:00
|
|
|
bin/hledger-vty:
|
2010-11-29 04:15:08 +03:00
|
|
|
ghc --make hledger-vty/hledger-vty.hs -o bin/hledger-vty -ihledger-vty -ihledger $(BUILDFLAGS)
|
|
|
|
|
2011-03-13 02:30:57 +03:00
|
|
|
bin/hledger-chart:
|
2010-11-29 04:15:08 +03:00
|
|
|
ghc --make hledger-chart/hledger-chart.hs -o bin/hledger-chart -ihledger-chart -ihledger $(BUILDFLAGS)
|
2010-09-10 02:54:34 +04:00
|
|
|
|
2010-12-07 04:54:51 +03:00
|
|
|
hledgernowarnings:
|
2010-11-14 22:40:57 +03:00
|
|
|
ghc --make $(MAIN) -o bin/hledger $(BUILDFLAGS) -Werror -v0
|
2010-09-10 02:54:34 +04:00
|
|
|
|
|
|
|
# build the profiling-enabled binary. You may need to cabal install
|
|
|
|
# --reinstall -p some libs.
|
2010-12-07 04:54:51 +03:00
|
|
|
hledgerp:
|
2010-11-14 22:40:57 +03:00
|
|
|
ghc --make $(MAIN) -prof -auto-all -o bin/hledgerp $(BUILDFLAGS)
|
2010-09-10 02:54:34 +04:00
|
|
|
|
2011-04-22 22:47:12 +04:00
|
|
|
# build the -fhpc hledger binary used for coverage reports and heap profiles.
|
|
|
|
# The associated .o files are kept separate from the regular ones.
|
|
|
|
hledgerhpc:
|
|
|
|
ghc --make $(MAIN) -fhpc -o bin/hledgerhpc -outputdir .hledgerhpcobjs $(BUILDFLAGS)
|
2010-09-10 02:54:34 +04:00
|
|
|
|
|
|
|
# build the fastest binary we can
|
2010-12-07 04:54:51 +03:00
|
|
|
hledgeropt:
|
2010-11-14 22:40:57 +03:00
|
|
|
ghc --make $(MAIN) -o bin/hledgeropt $(BUILDFLAGS) -O2 # -fvia-C # -fexcess-precision -optc-O3 -optc-ffast-math
|
2010-09-10 02:54:34 +04:00
|
|
|
|
2010-12-11 01:34:01 +03:00
|
|
|
# build portable releaseable binaries for gnu/linux
|
|
|
|
linuxbinaries: linuxbinary-hledger \
|
|
|
|
linuxbinary-hledger-web \
|
|
|
|
linuxbinary-hledger-vty \
|
|
|
|
linuxbinary-hledger-chart
|
|
|
|
@echo 'Please check the binaries look portable, then make compressbinaries:'
|
|
|
|
-file bin/*`arch`
|
2010-09-10 02:54:34 +04:00
|
|
|
|
2010-12-11 01:00:42 +03:00
|
|
|
linuxbinary-%:
|
|
|
|
ghc --make $*/$*.hs -o bin/$*$(RELEASEBINARYSUFFIX) $(LINUXRELEASEBUILDFLAGS)
|
|
|
|
|
|
|
|
# XXX link errors
|
|
|
|
linuxbinary-hledger-chart:
|
|
|
|
ghc --make hledger-chart/hledger-chart.hs -o bin/hledger-chart$(RELEASEBINARYSUFFIX) $(LINUXRELEASEBUILDFLAGS) -lpixman-1 -v
|
|
|
|
|
2010-09-10 02:54:34 +04:00
|
|
|
# build a deployable binary for mac, using only standard osx libs
|
2010-12-11 01:34:01 +03:00
|
|
|
# The scary link commands are copied from ghc --make -v, with -framework GMP removed.
|
|
|
|
# The GMP framework is not installed on most macs, and linking without it doesn't break anything that I'm aware of.
|
|
|
|
hledgermac:
|
|
|
|
ghc -c --make $(MAIN) $(MACRELEASEBUILDFLAGS) -o bin/$(BINARYFILENAME)
|
|
|
|
gcc -o bin/$(BINARYFILENAME) -march=i686 -m32 hledger/hledger.o hledger/Hledger/Cli/Main.o hledger-lib/Hledger/Data.o hledger/Hledger/Cli/Commands.o hledger/Hledger/Cli/Options.o hledger/Hledger/Cli/Tests.o hledger/Hledger/Cli/Utils.o hledger/Hledger/Cli/Version.o hledger-lib/Hledger/Data/Utils.o hledger-lib/Hledger/Data/Account.o hledger-lib/Hledger/Data/AccountName.o hledger-lib/Hledger/Data/Amount.o hledger-lib/Hledger/Data/Commodity.o hledger-lib/Hledger/Data/Dates.o hledger-lib/Hledger/Data/Transaction.o hledger-lib/Hledger/Data/Journal.o hledger-lib/Hledger/Data/Ledger.o hledger-lib/Hledger/Data/Posting.o hledger-lib/Hledger/Data/TimeLog.o hledger-lib/Hledger/Data/Types.o hledger-lib/Hledger/Read.o hledger-lib/Hledger/Read/Utils.o hledger-lib/Hledger/Read/JournalReader.o hledger-lib/Hledger/Read/TimelogReader.o hledger/Hledger/Cli/Add.o hledger/Hledger/Cli/Balance.o hledger/Hledger/Cli/Convert.o hledger/Hledger/Cli/Histogram.o hledger/Hledger/Cli/Print.o hledger/Hledger/Cli/Register.o hledger/Hledger/Cli/Stats.o -L/usr/lib -L/Users/simon/.cabal/lib/time-1.2.0.3/ghc-6.12.3 -L/usr/lib -L/Users/simon/.cabal/lib/split-0.1.2/ghc-6.12.3 -L/opt/local/lib -L/Users/simon/.cabal/lib/safe-0.2/ghc-6.12.3 -L/Users/simon/.cabal/lib/regexpr-0.5.1/ghc-6.12.3 -L/usr/local/lib/ghc-6.12.3/process-1.0.1.3 -L/Users/simon/.cabal/lib/mtlparse-0.0.1/ghc-6.12.3 -L/Users/simon/.cabal/lib/haskeline-0.6.3.2/ghc-6.12.3 -L/Users/simon/.cabal/lib/utf8-string-0.3.6/ghc-6.12.3 -L/Users/simon/.cabal/lib/terminfo-0.3.1.3/ghc-6.12.3 -L/Users/simon/.cabal/lib/mtl-2.0.1.0/ghc-6.12.3 -L/Users/simon/.cabal/lib/transformers-0.2.2.0/ghc-6.12.3 -L/usr/local/lib/ghc-6.12.3/extensible-exceptions-0.1.1.1 -L/usr/local/lib/ghc-6.12.3/directory-1.0.1.1 -L/usr/local/lib/ghc-6.12.3/unix-2.4.0.2 -L/usr/local/lib/ghc-6.12.3/old-time-1.0.0.5 -L/usr/local/lib/ghc-6.12.3/old-locale-1.0.0.2 -L/Users/simon/.cabal/lib/csv-0.1.1/ghc-6.12.3 -L/Users/simon/.cabal/lib/parsec-2.1.0.1/ghc-6.12.3 -L/usr/local/lib/ghc-6.12.3/filepath-1.1.0.4 -L/usr/local/lib/ghc-6.12.3/containers-0.3.0.0 -L/usr/local/lib/ghc-6.12.3/array-0.3.0.1 -L/usr/local/lib/ghc-6.12.3/bytestring-0.9.1.7 -L/usr/local/lib/ghc-6.12.3/base-3.0.3.2 -L/usr/local/lib/ghc-6.12.3/syb-0.1.0.2 -L/Users/simon/.cabal/lib/HUnit-1.2.2.1/ghc-6.12.3 -L/usr/local/lib/ghc-6.12.3/base-4.2.0.2 -L/usr/local/lib/ghc-6.12.3/integer-gmp-0.2.0.1 -L/usr/local/lib/ghc-6.12.3/ghc-prim-0.2.0.0 -L/usr/local/lib/ghc-6.12.3 -lHSrtsmain -lHStime-1.2.0.3 -lHSsplit-0.1.2 -lHSsafe-0.2 -lHSregexpr-0.5.1 -lHSprocess-1.0.1.3 -lHSmtlparse-0.0.1 -lHShaskeline-0.6.3.2 -liconv -lHSutf8-string-0.3.6 -lHSterminfo-0.3.1.3 -lncurses -lHSmtl-2.0.1.0 -lHStransformers-0.2.2.0 -lHSextensible-exceptions-0.1.1.1 -lHSdirectory-1.0.1.1 -lHSunix-2.4.0.2 -ldl -lHSold-time-1.0.0.5 -lHSold-locale-1.0.0.2 -lHScsv-0.1.1 -lHSparsec-2.1.0.1 -lHSfilepath-1.1.0.4 -lHScontainers-0.3.0.0 -lHSarray-0.3.0.1 -lHSbytestring-0.9.1.7 -lHSbase-3.0.3.2 -lHSsyb-0.1.0.2 -lHSHUnit-1.2.2.1 -lHSbase-4.2.0.2 -liconv -lHSinteger-gmp-0.2.0.1 -lHSghc-prim-0.2.0.0 -lHSrts -lm -ldl -u _ghczmprim_GHCziTypes_Izh_static_info -u _ghczmprim_GHCziTypes_Czh_static_info -u _ghczmprim_GHCziTypes_Fzh_static_info -u _ghczmprim_GHCziTypes_Dzh_static_info -u _base_GHCziPtr_Ptr_static_info -u _base_GHCziWord_Wzh_static_info -u _base_GHCziInt_I8zh_static_info -u _base_GHCziInt_I16zh_static_info -u _base_GHCziInt_I32zh_static_info -u _base_GHCziInt_I64zh_static_info -u _base_GHCziWord_W8zh_static_info -u _base_GHCziWord_W16zh_static_info -u _base_GHCziWord_W32zh_static_info -u _base_GHCziWord_W64zh_static_info -u _base_GHCziStable_StablePtr_static_info -u _ghczmprim_GHCziTypes_Izh_con_info -u _ghczmprim_GHCziTypes_Czh_con_info -u _ghczmprim_GHCziTypes_Fzh_con_info -u _ghczmprim_GHCziTypes_Dzh_con_info -u _base_GHCziPtr_Ptr_con_info -u _base_GHCziPtr_FunPtr_con_info -u _base_GHCziStable_StablePtr_con_info -u _ghczmprim_GHCziBool_False_closure -u _ghczmprim_GHCziBool_True_closure -u _base_GHCziPack_unpackCString_closure -u _base_GHCziIOziException_stackOverflow_closure -u _base_GHCziIOziException_heapOverflow_
|
|
|
|
-ghc -c --make hledger-web/hledger-web.hs $(MACRELEASEBUILDFLAGS) -o bin/`echo $(BINARYFILENAME) | sed -e 's/hledger/hledger-web/'`
|
|
|
|
-gcc -o bin/`echo $(BINARYFILENAME) | sed -e 's/hledger/hledger-web/'` -march=i686 -m32 hledger-web/hledger-web.o hledger-web/Hledger/Web/Main.o hledger/Hledger/Cli/Options.o hledger/Hledger/Cli/Utils.o hledger/Hledger/Cli/Version.o hledger-lib/Hledger/Data.o hledger-web/Hledger/Web/App.o hledger-web/Hledger/Web/Files.o hledger-web/Hledger/Web/Settings.o hledger-lib/Hledger/Data/Account.o hledger-lib/Hledger/Data/AccountName.o hledger-lib/Hledger/Data/Amount.o hledger-lib/Hledger/Data/Commodity.o hledger-lib/Hledger/Data/Dates.o hledger-lib/Hledger/Data/Transaction.o hledger-lib/Hledger/Data/Journal.o hledger-lib/Hledger/Data/Ledger.o hledger-lib/Hledger/Data/Posting.o hledger-lib/Hledger/Data/TimeLog.o hledger-lib/Hledger/Data/Types.o hledger-lib/Hledger/Data/Utils.o hledger-lib/Hledger/Read.o hledger-lib/Hledger/Read/Utils.o hledger-lib/Hledger/Read/JournalReader.o hledger-lib/Hledger/Read/TimelogReader.o hledger/Hledger/Cli/Add.o hledger/Hledger/Cli/Balance.o hledger/Hledger/Cli/Print.o hledger/Hledger/Cli/Register.o -L/usr/lib -L/Users/simon/.cabal/lib/yesod-0.6.6/ghc-6.12.3 -L/usr/lib -L/opt/local/lib -L/Users/simon/.cabal/lib/data-default-0.2/ghc-6.12.3 -L/Users/simon/.cabal/lib/xss-sanitize-0.2.4/ghc-6.12.3 -L/Users/simon/.cabal/lib/web-routes-0.23.1/ghc-6.12.3 -L/Users/simon/.cabal/lib/wai-extra-0.2.4.2/ghc-6.12.3 -L/Users/simon/.cabal/lib/zlib-bindings-0.0.0/ghc-6.12.3 -L/Users/simon/.cabal/lib/zlib-0.5.2.0/ghc-6.12.3 -L/Users/simon/.cabal/lib/wai-0.2.0/ghc-6.12.3 -L/Users/simon/.cabal/lib/tagsoup-0.11.1/ghc-6.12.3 -L/Users/simon/.cabal/lib/split-0.1.2/ghc-6.12.3 -L/Users/simon/.cabal/lib/safe-0.2/ghc-6.12.3 -L/Users/simon/.cabal/lib/regexpr-0.5.1/ghc-6.12.3 -L/Users/simon/.cabal/lib/pureMD5-1.1.0.0/ghc-6.12.3 -L/usr/local/lib/ghc-6.12.3/process-1.0.1.3 -L/Users/simon/.cabal/lib/persistent-0.3.0.1/ghc-6.12.3 -L/Users/simon/.cabal/lib/web-routes-quasi-0.6.2/ghc-6.12.3 -L/Users/simon/.cabal/lib/stm-2.1.2.2/ghc-6.12.3 -L/Users/simon/.cabal/lib/network-2.2.1.7/ghc-6.12.3 -L/Users/simon/.cabal/lib/neither-0.1.0/ghc-6.12.3 -L/Users/simon/.cabal/lib/mtlparse-0.0.1/ghc-6.12.3 -L/Users/simon/.cabal/lib/io-storage-0.3/ghc-6.12.3 -L/Users/simon/.cabal/lib/haskeline-0.6.3.2/ghc-6.12.3 -L/Users/simon/.cabal/lib/utf8-string-0.3.6/ghc-6.12.3 -L/Users/simon/.cabal/lib/terminfo-0.3.1.3/ghc-6.12.3 -L/Users/simon/.cabal/lib/mtl-2.0.1.0/ghc-6.12.3 -L/Users/simon/.cabal/lib/hamlet-0.6.0.1/ghc-6.12.3 -L/Users/simon/.cabal/lib/file-embed-0.0.3/ghc-6.12.3 -L/usr/local/lib/ghc-6.12.3/template-haskell-2.4.0.1 -L/usr/local/lib/ghc-6.12.3/pretty-1.0.1.1 -L/Users/simon/.cabal/lib/failure-0.1.0/ghc-6.12.3 -L/usr/local/lib/ghc-6.12.3/extensible-exceptions-0.1.1.1 -L/Users/simon/.cabal/lib/enumerator-0.4.2/ghc-6.12.3 -L/Users/simon/.cabal/lib/transformers-0.2.2.0/ghc-6.12.3 -L/Users/simon/.cabal/lib/email-validate-0.2.5/ghc-6.12.3 -L/Users/simon/.cabal/lib/ranges-0.2.2/ghc-6.12.3 -L/Users/simon/.cabal/lib/parsec-2.1.0.1/ghc-6.12.3 -L/Users/simon/.cabal/lib/clientsession-0.4.0.2/ghc-6.12.3 -L/Users/simon/.cabal/lib/random-1.0.0.2/ghc-6.12.3 -L/Users/simon/.cabal/lib/time-1.2.0.3/ghc-6.12.3 -L/usr/local/lib/ghc-6.12.3/directory-1.0.1.1 -L/usr/local/lib/ghc-6.12.3/unix-2.4.0.2 -L/usr/local/lib/ghc-6.12.3/old-time-1.0.0.5 -L/usr/local/lib/ghc-6.12.3/old-locale-1.0.0.2 -L/usr/local/lib/ghc-6.12.3/filepath-1.1.0.4 -L/Users/simon/.cabal/lib/cereal-0.3.0.0/ghc-6.12.3 -L/Users/simon/.cabal/lib/blaze-builder-0.2.0.1/ghc-6.12.3 -L/Users/simon/.cabal/lib/text-0.10.0.0/ghc-6.12.3 -L/Users/simon/.cabal/lib/deepseq-1.1.0.0/ghc-6.12.3 -L/Users/simon/.cabal/lib/binary-0.5.0.2/ghc-6.12.3 -L/usr/local/lib/ghc-6.12.3/containers-0.3.0.0 -L/Users/simon/.cabal/lib/base64-bytestring-0.1.0.1/ghc-6.12.3 -L/usr/local/lib/ghc-6.12.3/bytestring-0.9.1.7 -L/usr/local/lib/ghc-6.12.3/base-3.0.3.2 -L/usr/local/lib/ghc-6.12.3/syb-0.1.0.2 -L/usr/local/lib/ghc-6.12.3/array-0.3.0.1 -L/Users/simon/.cabal/lib/HUnit-1.2.2.1/ghc-6.12.3 -L/usr/local/lib/ghc-6.12.3/base-4.2.0.2 -L/usr/local/lib/ghc-6.12.3/integer-gmp-0.2.0.1 -L/usr/local/lib/ghc-6.12.3/ghc-prim-0.2.0.0 -L/usr/local/li
|
|
|
|
-ghc -c --make hledger-vty/hledger-vty.hs $(MACRELEASEBUILDFLAGS) -o bin/`echo $(BINARYFILENAME) | sed -e 's/hledger/hledger-vty/'`
|
|
|
|
-gcc -o bin/`echo $(BINARYFILENAME) | sed -e 's/hledger/hledger-vty/'` -march=i686 -m32 hledger-vty/hledger-vty.o hledger-vty/Hledger/Vty/Main.o hledger/Hledger/Cli/Balance.o hledger/Hledger/Cli/Options.o hledger/Hledger/Cli/Print.o hledger/Hledger/Cli/Register.o hledger/Hledger/Cli/Utils.o hledger/Hledger/Cli/Version.o hledger-lib/Hledger/Data.o hledger-lib/Hledger/Data/Account.o hledger-lib/Hledger/Data/AccountName.o hledger-lib/Hledger/Data/Amount.o hledger-lib/Hledger/Data/Commodity.o hledger-lib/Hledger/Data/Dates.o hledger-lib/Hledger/Data/Transaction.o hledger-lib/Hledger/Data/Ledger.o hledger-lib/Hledger/Data/Journal.o hledger-lib/Hledger/Data/Posting.o hledger-lib/Hledger/Data/TimeLog.o hledger-lib/Hledger/Data/Types.o hledger-lib/Hledger/Data/Utils.o hledger-lib/Hledger/Read.o hledger-lib/Hledger/Read/Utils.o hledger-lib/Hledger/Read/JournalReader.o hledger-lib/Hledger/Read/TimelogReader.o -L/usr/lib -L/Users/simon/.cabal/lib/vty-4.6.0.1/ghc-6.12.3 -L/usr/lib -L/opt/local/lib -L/Users/simon/.cabal/lib/parallel-2.2.0.1/ghc-6.12.3 -L/Users/simon/.cabal/lib/utf8-string-0.3.6/ghc-6.12.3 -L/Users/simon/.cabal/lib/time-1.2.0.3/ghc-6.12.3 -L/Users/simon/.cabal/lib/terminfo-0.3.1.3/ghc-6.12.3 -L/Users/simon/.cabal/lib/split-0.1.2/ghc-6.12.3 -L/Users/simon/.cabal/lib/safe-0.2/ghc-6.12.3 -L/Users/simon/.cabal/lib/regexpr-0.5.1/ghc-6.12.3 -L/usr/local/lib/ghc-6.12.3/process-1.0.1.3 -L/Users/simon/.cabal/lib/parsec-2.1.0.1/ghc-6.12.3 -L/Users/simon/.cabal/lib/mtlparse-0.0.1/ghc-6.12.3 -L/Users/simon/.cabal/lib/mtl-2.0.1.0/ghc-6.12.3 -L/Users/simon/.cabal/lib/transformers-0.2.2.0/ghc-6.12.3 -L/usr/local/lib/ghc-6.12.3/extensible-exceptions-0.1.1.1 -L/usr/local/lib/ghc-6.12.3/directory-1.0.1.1 -L/usr/local/lib/ghc-6.12.3/unix-2.4.0.2 -L/usr/local/lib/ghc-6.12.3/old-time-1.0.0.5 -L/usr/local/lib/ghc-6.12.3/old-locale-1.0.0.2 -L/usr/local/lib/ghc-6.12.3/filepath-1.1.0.4 -L/Users/simon/.cabal/lib/deepseq-1.1.0.0/ghc-6.12.3 -L/usr/local/lib/ghc-6.12.3/containers-0.3.0.0 -L/usr/local/lib/ghc-6.12.3/bytestring-0.9.1.7 -L/usr/local/lib/ghc-6.12.3/base-3.0.3.2 -L/usr/local/lib/ghc-6.12.3/syb-0.1.0.2 -L/usr/local/lib/ghc-6.12.3/array-0.3.0.1 -L/Users/simon/.cabal/lib/HUnit-1.2.2.1/ghc-6.12.3 -L/usr/local/lib/ghc-6.12.3/base-4.2.0.2 -L/usr/local/lib/ghc-6.12.3/integer-gmp-0.2.0.1 -L/usr/local/lib/ghc-6.12.3/ghc-prim-0.2.0.0 -L/usr/local/lib/ghc-6.12.3 -lHSrtsmain -lHSvty-4.6.0.1 -lHSparallel-2.2.0.1 -lHSutf8-string-0.3.6 -lHStime-1.2.0.3 -lHSterminfo-0.3.1.3 -lncurses -lHSsplit-0.1.2 -lHSsafe-0.2 -lHSregexpr-0.5.1 -lHSprocess-1.0.1.3 -lHSparsec-2.1.0.1 -lHSmtlparse-0.0.1 -lHSmtl-2.0.1.0 -lHStransformers-0.2.2.0 -lHSextensible-exceptions-0.1.1.1 -lHSdirectory-1.0.1.1 -lHSunix-2.4.0.2 -ldl -lHSold-time-1.0.0.5 -lHSold-locale-1.0.0.2 -lHSfilepath-1.1.0.4 -lHSdeepseq-1.1.0.0 -lHScontainers-0.3.0.0 -lHSbytestring-0.9.1.7 -lHSbase-3.0.3.2 -lHSsyb-0.1.0.2 -lHSarray-0.3.0.1 -lHSHUnit-1.2.2.1 -lHSbase-4.2.0.2 -liconv -lHSinteger-gmp-0.2.0.1 -lHSghc-prim-0.2.0.0 -lHSrts -lm -ldl -u _ghczmprim_GHCziTypes_Izh_static_info -u _ghczmprim_GHCziTypes_Czh_static_info -u _ghczmprim_GHCziTypes_Fzh_static_info -u _ghczmprim_GHCziTypes_Dzh_static_info -u _base_GHCziPtr_Ptr_static_info -u _base_GHCziWord_Wzh_static_info -u _base_GHCziInt_I8zh_static_info -u _base_GHCziInt_I16zh_static_info -u _base_GHCziInt_I32zh_static_info -u _base_GHCziInt_I64zh_static_info -u _base_GHCziWord_W8zh_static_info -u _base_GHCziWord_W16zh_static_info -u _base_GHCziWord_W32zh_static_info -u _base_GHCziWord_W64zh_static_info -u _base_GHCziStable_StablePtr_static_info -u _ghczmprim_GHCziTypes_Izh_con_info -u _ghczmprim_GHCziTypes_Czh_con_info -u _ghczmprim_GHCziTypes_Fzh_con_info -u _ghczmprim_GHCziTypes_Dzh_con_info -u _base_GHCziPtr_Ptr_con_info -u _base_GHCziPtr_FunPtr_con_info -u _base_GHCziStable_StablePtr_con_info -u _ghczmprim_GHCziBool_False_closure -u _ghczmprim_GHCziBool_True_closure -u _base_GHCziPack_unpackCString_closure -u _base_GHCziIOziException_stackOverflow_closure -u _base_GHCziIOziException_heapOverflow_closure -u _base_ControlziExceptionziBase_nonTerminati
|
|
|
|
-ghc -c --make hledger-chart/hledger-chart.hs $(MACRELEASEBUILDFLAGS) -o bin/`echo $(BINARYFILENAME) | sed -e 's/hledger/hledger-chart/'`
|
|
|
|
-gcc -o bin/`echo $(BINARYFILENAME) | sed -e 's/hledger/hledger-chart/'` -march=i686 -m32 hledger-chart/hledger-chart.o hledger-chart/Hledger/Chart/Main.o hledger/Hledger/Cli/Options.o hledger/Hledger/Cli/Utils.o hledger/Hledger/Cli/Version.o hledger-lib/Hledger/Data.o hledger-lib/Hledger/Data/Account.o hledger-lib/Hledger/Data/AccountName.o hledger-lib/Hledger/Data/Amount.o hledger-lib/Hledger/Data/Commodity.o hledger-lib/Hledger/Data/Dates.o hledger-lib/Hledger/Data/Transaction.o hledger-lib/Hledger/Data/Ledger.o hledger-lib/Hledger/Data/Journal.o hledger-lib/Hledger/Data/Posting.o hledger-lib/Hledger/Data/TimeLog.o hledger-lib/Hledger/Data/Types.o hledger-lib/Hledger/Data/Utils.o hledger-lib/Hledger/Read.o hledger-lib/Hledger/Read/Utils.o hledger-lib/Hledger/Read/JournalReader.o hledger-lib/Hledger/Read/TimelogReader.o -L/usr/lib -L/Users/simon/.cabal/lib/utf8-string-0.3.6/ghc-6.12.3 -L/opt/local/lib -L/Users/simon/.cabal/lib/split-0.1.2/ghc-6.12.3 -L/usr/lib -L/Users/simon/.cabal/lib/safe-0.2/ghc-6.12.3 -L/Users/simon/.cabal/lib/regexpr-0.5.1/ghc-6.12.3 -L/usr/local/lib/ghc-6.12.3/process-1.0.1.3 -L/Users/simon/.cabal/lib/parsec-2.1.0.1/ghc-6.12.3 -L/Users/simon/.cabal/lib/mtlparse-0.0.1/ghc-6.12.3 -L/Users/simon/.cabal/lib/HUnit-1.2.2.1/ghc-6.12.3 -L/Users/simon/.cabal/lib/Chart-0.14/ghc-6.12.3 -L/Users/simon/.cabal/lib/gtk-0.12.0/ghc-6.12.3 -L/Users/simon/.cabal/lib/pango-0.12.0/ghc-6.12.3 -L/Users/simon/.cabal/lib/gio-0.12.0/ghc-6.12.3 -L/Users/simon/.cabal/lib/glib-0.12.0/ghc-6.12.3 -L/Users/simon/.cabal/lib/data-accessor-template-0.2.1.5/ghc-6.12.3 -L/Users/simon/.cabal/lib/utility-ht-0.0.5.1/ghc-6.12.3 -L/usr/local/lib/ghc-6.12.3/base-3.0.3.2 -L/usr/local/lib/ghc-6.12.3/syb-0.1.0.2 -L/usr/local/lib/ghc-6.12.3/template-haskell-2.4.0.1 -L/usr/local/lib/ghc-6.12.3/pretty-1.0.1.1 -L/Users/simon/.cabal/lib/data-accessor-0.2.1.4/ghc-6.12.3 -L/usr/local/lib/ghc-6.12.3/containers-0.3.0.0 -L/Users/simon/.cabal/lib/colour-2.3.1/ghc-6.12.3 -L/Users/simon/.cabal/lib/cairo-0.12.0/ghc-6.12.3 -L/Users/simon/.cabal/lib/mtl-2.0.1.0/ghc-6.12.3 -L/Users/simon/.cabal/lib/transformers-0.2.2.0/ghc-6.12.3 -L/Users/simon/.cabal/lib/haskell98-1.0.1.1/ghc-6.12.3 -L/Users/simon/.cabal/lib/random-1.0.0.2/ghc-6.12.3 -L/Users/simon/.cabal/lib/time-1.2.0.3/ghc-6.12.3 -L/Users/simon/.cabal/lib/process-1.0.1.4/ghc-6.12.3 -L/usr/local/lib/ghc-6.12.3/directory-1.0.1.1 -L/usr/local/lib/ghc-6.12.3/unix-2.4.0.2 -L/usr/local/lib/ghc-6.12.3/old-time-1.0.0.5 -L/usr/local/lib/ghc-6.12.3/old-locale-1.0.0.2 -L/usr/local/lib/ghc-6.12.3/filepath-1.1.0.4 -L/usr/local/lib/ghc-6.12.3/bytestring-0.9.1.7 -L/usr/local/lib/ghc-6.12.3/array-0.3.0.1 -L/usr/local/lib/ghc-6.12.3/base-4.2.0.2 -L/usr/local/lib/ghc-6.12.3/integer-gmp-0.2.0.1 -L/usr/local/lib/ghc-6.12.3/ghc-prim-0.2.0.0 -L/usr/local/lib/ghc-6.12.3 -lHSrtsmain -lHSutf8-string-0.3.6 -lHSsplit-0.1.2 -lHSsafe-0.2 -lHSregexpr-0.5.1 -lHSprocess-1.0.1.3 -lHSparsec-2.1.0.1 -lHSmtlparse-0.0.1 -lHSHUnit-1.2.2.1 -lHSChart-0.14 -lHSgtk-0.12.0 -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lpangocairo-1.0 -lXinerama -lXi -lXrandr -lXcursor -lXcomposite -lXdamage -lgdk_pixbuf-2.0 -lpangoft2-1.0 -lgio-2.0 -lXext -lXfixes -lcairo -lpixman-1 -lXrender -lX11 -lxcb -lXau -lXdmcp -lpng12 -lpango-1.0 -lm -lfontconfig -lexpat -lfreetype -lz -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lglib-2.0 -lintl -liconv -lHSpango-0.12.0 -lpangocairo-1.0 -lcairo -lpangoft2-1.0 -lpixman-1 -lpng12 -lXrender -lX11 -lxcb -lXau -lXdmcp -lpango-1.0 -lm -lfontconfig -lexpat -lfreetype -lz -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lglib-2.0 -lintl -liconv -lHSgio-0.12.0 -lgio-2.0 -lz -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lglib-2.0 -lintl -liconv -lHSglib-0.12.0 -lgobject-2.0 -lgthread-2.0 -lglib-2.0 -lintl -liconv -lHSdata-accessor-template-0.2.1.5 -lHSutility-ht-0.0.5.1 -lHSbase-3.0.3.2 -lHSsyb-0.1.0.2 -lHStemplate-haskell-2.4.0.1 -lHSpretty-1.0.1.1 -lHSdata-accessor-0.2.1.4 -lHScontainers-0.3.0.0 -lHScolour-2.3.1 -lHScairo-0.12.0 -lcairo -lgobject-2.0 -lpixman-1 -lfontconfig -lexpat -lfreetype -lpng12 -lz -lXrender -lgthread-2.0 -lglib-2.0 -lint
|
|
|
|
@echo 'Please check the binaries look portable, then make compressbinaries:'
|
|
|
|
otool -L bin/*`arch`
|
2010-09-10 02:54:34 +04:00
|
|
|
|
|
|
|
# build deployable binaries for windows, assuming cygwin tools are present
|
|
|
|
hledgerwin: install
|
|
|
|
cp ~/.cabal/bin/hledger.exe bin/`echo $(BINARYFILENAME) | dos2unix`
|
2010-12-07 04:54:51 +03:00
|
|
|
-cp ~/.cabal/bin/hledger-web.exe bin/`echo $(BINARYFILENAME) | sed -e 's/hledger/hledger-web/' | dos2unix`
|
|
|
|
-cp ~/.cabal/bin/hledger-vty.exe bin/`echo $(BINARYFILENAME) | sed -e 's/hledger/hledger-vty/' | dos2unix`
|
|
|
|
-cp ~/.cabal/bin/hledger-chart.exe bin/`echo $(BINARYFILENAME) | sed -e 's/hledger/hledger-chart/' | dos2unix`
|
|
|
|
@echo 'Please check the binaries look portable, then zip them:'
|
|
|
|
ls -l bin/*`arch`
|
|
|
|
|
|
|
|
compressbinaries:
|
|
|
|
gzip bin/*`arch`
|
2010-09-10 02:54:34 +04:00
|
|
|
|
|
|
|
######################################################################
|
|
|
|
# TESTING
|
|
|
|
|
2009-06-28 07:17:02 +04:00
|
|
|
test: codetest
|
|
|
|
|
2009-06-05 15:15:32 +04:00
|
|
|
# quick code tests - run all the time
|
2009-06-28 07:17:02 +04:00
|
|
|
codetest: unittest functest
|
2009-03-15 08:15:59 +03:00
|
|
|
|
2009-06-28 07:17:02 +04:00
|
|
|
# moderate pre-commit tests - run before record or before send/push, your choice
|
2009-09-23 19:00:24 +04:00
|
|
|
committest: hlinttest unittest doctest functest haddocktest warningstest quickcabaltest
|
2009-06-28 07:17:02 +04:00
|
|
|
|
|
|
|
# thorough pre-release tests - run before release
|
2010-09-07 01:00:19 +04:00
|
|
|
# consider hiding dev-build symlinks in Hledger/ first
|
|
|
|
releasetest: Clean unittest doctest functest warningstest fullcabaltest haddocktest
|
2009-06-28 07:17:02 +04:00
|
|
|
|
2009-09-23 19:00:24 +04:00
|
|
|
hlinttest hlint:
|
2009-09-23 21:56:15 +04:00
|
|
|
hlint --hint=hlint --report=hlint.html $(SOURCEFILES)
|
2009-06-28 07:17:02 +04:00
|
|
|
|
|
|
|
# run unit tests
|
2009-11-25 14:41:25 +03:00
|
|
|
unittest: unittest-builtin
|
2009-06-28 07:17:02 +04:00
|
|
|
|
2010-12-11 01:09:32 +03:00
|
|
|
unittest-builtin: bin/hledger
|
2010-05-24 02:49:03 +04:00
|
|
|
@(bin/hledger test \
|
2010-09-06 03:24:34 +04:00
|
|
|
&& echo $@ PASSED) || echo $@ FAILED
|
2009-06-05 15:15:32 +04:00
|
|
|
|
2009-11-25 14:41:25 +03:00
|
|
|
# XXX doesn't rebuild on hledger source changes
|
2009-06-28 07:17:02 +04:00
|
|
|
unittest-standalone: tools/unittest
|
|
|
|
@(tools/unittest \
|
2010-09-06 03:24:34 +04:00
|
|
|
&& echo $@ PASSED) || echo $@ FAILED
|
2009-06-05 15:15:32 +04:00
|
|
|
|
2009-06-28 07:17:02 +04:00
|
|
|
# run unit tests without waiting for compilation
|
|
|
|
unittesths:
|
2010-11-14 22:40:57 +03:00
|
|
|
@(runghc $(MAIN) test \
|
2010-09-06 03:24:34 +04:00
|
|
|
&& echo $@ PASSED) || echo $@ FAILED
|
2008-12-05 12:28:24 +03:00
|
|
|
|
2010-09-03 06:08:47 +04:00
|
|
|
# run functional tests, requires shelltestrunner >= 0.9 from hackage
|
2010-07-18 03:09:24 +04:00
|
|
|
# 16 threads sometimes gives "commitAndReleaseBuffer: resource vanished (Broken pipe)" here but seems harmless
|
2009-07-12 02:30:10 +04:00
|
|
|
functest: hledger
|
2010-05-24 02:49:03 +04:00
|
|
|
(shelltest tests --implicit=none --plain --threads=16 \
|
2010-09-06 03:24:34 +04:00
|
|
|
&& echo $@ PASSED) || echo $@ FAILED
|
2009-06-27 12:15:00 +04:00
|
|
|
|
2009-03-15 08:15:59 +03:00
|
|
|
# run doc tests
|
2010-09-10 02:54:34 +04:00
|
|
|
DOCTESTFILES=\
|
|
|
|
hledger/Hledger/Cli/Tests.hs
|
|
|
|
doctest: tools/doctest
|
|
|
|
@for f in $(DOCTESTFILES); do \
|
|
|
|
(tools/doctest $$f && echo $@ PASSED) || echo $@ FAILED ; done
|
2009-03-15 11:47:23 +03:00
|
|
|
|
2009-05-29 12:29:04 +04:00
|
|
|
# make sure we have no haddock errors
|
|
|
|
haddocktest:
|
2011-08-19 23:58:56 +04:00
|
|
|
@(make --quiet haddock \
|
2010-09-06 03:24:34 +04:00
|
|
|
&& echo $@ PASSED) || echo $@ FAILED
|
2009-06-05 15:15:32 +04:00
|
|
|
|
2010-12-11 01:09:32 +03:00
|
|
|
# needs updating
|
2009-06-05 15:15:32 +04:00
|
|
|
# make sure the normal build has no warnings
|
|
|
|
warningstest:
|
|
|
|
@(make -s clean \
|
|
|
|
&& make --no-print-directory -s hledgernowarnings \
|
2010-09-06 03:24:34 +04:00
|
|
|
&& echo $@ PASSED) || echo $@ FAILED
|
2009-06-05 15:15:32 +04:00
|
|
|
|
2011-04-18 11:26:58 +04:00
|
|
|
# make sure cabal is reasonably happy
|
|
|
|
quickcabaltest:
|
|
|
|
@(make --no-print-directory allcabalclean allcabalcheck allcabalconfigure \
|
|
|
|
&& echo $@ PASSED) || echo $@ FAILED
|
2010-12-11 01:09:32 +03:00
|
|
|
|
2009-06-28 07:17:02 +04:00
|
|
|
# make sure cabal is happy in all possible ways
|
2011-04-18 11:26:58 +04:00
|
|
|
fullcabaltest:
|
2011-04-22 23:04:47 +04:00
|
|
|
(for p in $(PACKAGES); do (echo "testing $$p package" && cd $$p && cabal clean && cabal check && cabal install && cabal sdist && cabal upload dist/$$p-$(VERSION).tar.gz --check -v3); done \
|
2011-04-18 11:26:58 +04:00
|
|
|
&& echo $@ PASSED) || echo $@ FAILED
|
2009-03-15 08:15:59 +03:00
|
|
|
|
2010-11-20 01:04:20 +03:00
|
|
|
# run simple performance benchmarks without saving results
|
2010-05-23 01:24:07 +04:00
|
|
|
# Requires some commands defined in bench.tests and some BENCHEXES defined above.
|
2010-07-13 10:30:06 +04:00
|
|
|
quickbench: samplejournals bench.tests tools/simplebench
|
2010-05-23 01:24:07 +04:00
|
|
|
tools/simplebench -fbench.tests $(BENCHEXES)
|
|
|
|
@rm -f benchresults.*
|
|
|
|
|
2010-11-20 01:04:20 +03:00
|
|
|
# run simple performance benchmarks and archive results
|
2009-12-12 05:25:27 +03:00
|
|
|
# Requires some commands defined in bench.tests and some BENCHEXES defined above.
|
2010-07-13 10:30:06 +04:00
|
|
|
simplebench: samplejournals bench.tests tools/simplebench
|
2010-05-23 01:24:07 +04:00
|
|
|
tools/simplebench -fbench.tests $(BENCHEXES) | tee profs/$(TIME).bench
|
2009-06-03 00:37:34 +04:00
|
|
|
@rm -f benchresults.*
|
2009-05-29 23:26:09 +04:00
|
|
|
@(cd profs; rm -f latest.bench; ln -s $(TIME).bench latest.bench)
|
2008-12-10 23:46:18 +03:00
|
|
|
|
2010-02-13 21:39:49 +03:00
|
|
|
# run criterion benchmark tests and save graphical results
|
2010-07-13 10:30:06 +04:00
|
|
|
criterionbench: samplejournals tools/criterionbench
|
2010-02-13 21:39:49 +03:00
|
|
|
tools/criterionbench -t png -k png
|
|
|
|
|
|
|
|
# run progression benchmark tests and save graphical results
|
2010-07-13 10:30:06 +04:00
|
|
|
progressionbench: samplejournals tools/progressionbench
|
2010-02-13 21:39:49 +03:00
|
|
|
tools/progressionbench -- -t png -k png
|
|
|
|
|
2010-11-20 01:04:20 +03:00
|
|
|
# generate and archive an execution profile
|
2010-07-13 10:30:06 +04:00
|
|
|
prof: samplejournals hledgerp
|
2010-05-22 04:46:32 +04:00
|
|
|
@echo "Profiling: $(PROFCMD)"
|
|
|
|
-$(PROFCMD) +RTS -p -RTS
|
2010-11-20 01:04:20 +03:00
|
|
|
mv hledgerp.prof profs/$(TIME).prof
|
|
|
|
(cd profs; rm -f latest*.prof; ln -s $(TIME).prof latest.prof)
|
|
|
|
|
|
|
|
# generate, archive, simplify and display an execution profile
|
|
|
|
viewprof: prof
|
|
|
|
tools/simplifyprof.hs profs/latest.prof
|
2009-06-04 05:33:31 +04:00
|
|
|
|
2010-05-22 04:46:32 +04:00
|
|
|
# generate and display an execution profile, don't save or simplify
|
2010-07-13 10:30:06 +04:00
|
|
|
quickprof: samplejournals hledgerp
|
2010-05-22 04:46:32 +04:00
|
|
|
@echo "Profiling: $(PROFCMD)"
|
|
|
|
-$(PROFCMD) +RTS -p -RTS
|
|
|
|
echo; cat hledgerp.prof
|
|
|
|
|
2010-11-20 01:04:20 +03:00
|
|
|
# generate and archive a graphical heap profile
|
2010-07-13 10:30:06 +04:00
|
|
|
heap: samplejournals hledgerp
|
2010-05-22 04:46:32 +04:00
|
|
|
@echo "Profiling heap with: $(PROFCMD)"
|
|
|
|
$(PROFCMD) +RTS -hc -RTS
|
2009-06-04 05:33:31 +04:00
|
|
|
mv hledgerp.hp profs/$(TIME).hp
|
|
|
|
(cd profs; rm -f latest.hp; ln -s $(TIME).hp latest.hp; \
|
2009-05-30 00:42:42 +04:00
|
|
|
hp2ps $(TIME).hp; rm -f latest.ps; ln -s $(TIME).ps latest.ps; rm -f *.aux)
|
2010-11-20 01:04:20 +03:00
|
|
|
|
|
|
|
viewheap: heap
|
2010-02-26 03:24:04 +03:00
|
|
|
$(VIEWPS) profs/latest.ps
|
2009-06-04 05:33:31 +04:00
|
|
|
|
2010-05-22 04:46:32 +04:00
|
|
|
# generate and display a graphical heap profile, don't save
|
2010-07-13 10:30:06 +04:00
|
|
|
quickheap: samplejournals hledgerp
|
2010-05-22 04:46:32 +04:00
|
|
|
@echo "Profiling heap with: $(PROFCMD)"
|
|
|
|
$(PROFCMD) +RTS -hc -RTS
|
|
|
|
hp2ps hledgerp.hp
|
|
|
|
$(VIEWPS) hledger.ps
|
|
|
|
|
2011-04-22 22:47:12 +04:00
|
|
|
# display a code coverage text report from running hledger COVCMD
|
|
|
|
quickcoverage:
|
|
|
|
@echo "Generating code coverage text report for hledger command: $(COVCMD)"
|
|
|
|
tools/runhledgerhpc "report" $(COVCMD)
|
|
|
|
|
|
|
|
# generate a code coverage html report from running hledger COVCMD
|
|
|
|
coverage: samplejournals hledgerhpc
|
|
|
|
@echo "Generating code coverage html report for hledger command: $(COVCMD)"
|
|
|
|
tools/runhledgerhpc "markup --destdir=profs/coverage" $(COVCMD)
|
2009-06-04 05:33:31 +04:00
|
|
|
cd profs/coverage; rm -f index.html; ln -s hpc_index.html index.html
|
2010-11-20 01:04:20 +03:00
|
|
|
|
2011-04-22 22:47:12 +04:00
|
|
|
# view the last html code coverage report
|
|
|
|
viewcoverage:
|
2010-02-26 03:24:04 +03:00
|
|
|
$(VIEWHTML) profs/coverage/index.html
|
2009-06-04 05:33:31 +04:00
|
|
|
|
2009-06-05 15:15:32 +04:00
|
|
|
# get a debug prompt
|
|
|
|
ghci:
|
2010-11-14 22:40:57 +03:00
|
|
|
ghci $(INCLUDEPATHS) $(MAIN)
|
2009-06-05 15:15:32 +04:00
|
|
|
|
2010-07-13 10:30:06 +04:00
|
|
|
# generate standard sample journals
|
|
|
|
samplejournals: data/sample.journal data/100x100x10.journal data/1000x1000x10.journal data/10000x1000x10.journal data/100000x1000x10.journal
|
2009-05-29 12:29:04 +04:00
|
|
|
|
2010-07-13 10:30:06 +04:00
|
|
|
data/sample.journal:
|
2009-05-29 12:29:04 +04:00
|
|
|
true # XXX should probably regenerate this
|
|
|
|
|
2010-07-13 10:30:06 +04:00
|
|
|
data/100x100x10.journal: tools/generatejournal
|
|
|
|
tools/generatejournal 100 100 10 >$@
|
2009-05-29 12:29:04 +04:00
|
|
|
|
2010-07-13 10:30:06 +04:00
|
|
|
data/1000x1000x10.journal: tools/generatejournal
|
|
|
|
tools/generatejournal 1000 1000 10 >$@
|
2008-11-26 22:00:55 +03:00
|
|
|
|
2010-07-13 10:30:06 +04:00
|
|
|
data/10000x1000x10.journal: tools/generatejournal
|
|
|
|
tools/generatejournal 10000 1000 10 >$@
|
2009-05-17 18:13:06 +04:00
|
|
|
|
2010-07-13 10:30:06 +04:00
|
|
|
data/100000x1000x10.journal: tools/generatejournal
|
|
|
|
tools/generatejournal 100000 1000 10 >$@
|
2009-05-29 12:29:04 +04:00
|
|
|
|
|
|
|
######################################################################
|
2009-06-02 23:54:45 +04:00
|
|
|
# DOCUMENTATION
|
2009-01-25 10:48:41 +03:00
|
|
|
|
2009-07-15 01:51:10 +04:00
|
|
|
# Documentation source files are UPPERCASE files in the top directory.
|
2010-05-31 05:23:30 +04:00
|
|
|
# site/ contains both html generated from these (UPPERCASE.html) and
|
|
|
|
# revision-controlled resource files (everything else). site/api-doc
|
2009-07-15 01:51:10 +04:00
|
|
|
# contains only generated files.
|
|
|
|
|
2009-06-02 23:54:45 +04:00
|
|
|
cleandocs:
|
2010-05-31 05:23:30 +04:00
|
|
|
rm -rf site/[A-Z]*.html site/api-doc/*
|
2009-06-02 10:20:19 +04:00
|
|
|
|
2009-06-02 23:54:45 +04:00
|
|
|
# rebuild all docs
|
2010-11-20 00:39:17 +03:00
|
|
|
docs: site codedocs
|
2010-05-17 18:33:05 +04:00
|
|
|
|
|
|
|
# build the hledger.org website
|
|
|
|
# Requires hakyll (cabal install hakyll)
|
2010-05-21 22:19:00 +04:00
|
|
|
.PHONY: site
|
2010-09-03 06:08:47 +04:00
|
|
|
site: site/hakyll site/_site/index.html site/_site/profs
|
2010-05-21 22:19:00 +04:00
|
|
|
cd site; ./hakyll build
|
2010-09-03 06:08:47 +04:00
|
|
|
|
|
|
|
site/_site/index.html:
|
2010-11-20 00:39:17 +03:00
|
|
|
mkdir -p site/_site
|
2010-05-23 23:24:26 +04:00
|
|
|
cd site/_site; ln -sf README.html index.html; ln -sf ../../profs
|
|
|
|
|
2010-09-03 06:08:47 +04:00
|
|
|
site/_site/profs:
|
2010-11-20 00:39:17 +03:00
|
|
|
mkdir -p site/_site
|
2010-09-03 06:08:47 +04:00
|
|
|
cd site/_site; ln -sf ../../profs
|
|
|
|
|
2010-05-23 23:24:26 +04:00
|
|
|
cleansite: site/hakyll
|
|
|
|
cd site; ./hakyll clean
|
2010-05-17 18:33:05 +04:00
|
|
|
|
2010-05-31 05:23:30 +04:00
|
|
|
previewsite: site/hakyll
|
|
|
|
cd site; ./hakyll preview
|
|
|
|
|
2010-05-21 22:19:00 +04:00
|
|
|
site/hakyll: site/hakyll.hs
|
2010-07-09 06:11:12 +04:00
|
|
|
cd site; ghc --make hakyll.hs $(PREFERMACUSRLIBFLAGS)
|
2010-05-17 18:33:05 +04:00
|
|
|
|
2010-07-18 03:09:24 +04:00
|
|
|
siteci:
|
|
|
|
cd site; sp --no-exts --no-default-map -o hakyll ghc --make hakyll.hs $(PREFERMACUSRLIBFLAGS) --run preview
|
|
|
|
|
2010-05-17 18:33:05 +04:00
|
|
|
viewsite: site
|
2010-05-21 22:19:00 +04:00
|
|
|
$(VIEWHTML) site/_site/index.html
|
2009-05-29 12:29:04 +04:00
|
|
|
|
2010-05-26 04:32:19 +04:00
|
|
|
# called on each darcs commit
|
|
|
|
commithook: site
|
|
|
|
|
2010-02-13 23:21:08 +03:00
|
|
|
# generate html versions of docs (and the hledger.org website)
|
|
|
|
# work around pandoc not handling full rst image directive
|
2010-05-17 18:33:05 +04:00
|
|
|
# html:
|
2010-05-31 05:23:30 +04:00
|
|
|
# for d in $(DOCFILES); do $(PANDOC) --toc -s -H site/header.html -A site/footer.html -r rst $$d >site/$$d.html; done
|
|
|
|
# cd site && ln -sf ../SCREENSHOTS && $(RST2HTML) SCREENSHOTS >SCREENSHOTS.html && rm -f SCREENSHOTS
|
|
|
|
# cd site; rm -f index.html; ln -s README.html index.html; rm -f profs; ln -s ../profs
|
2009-06-02 10:58:43 +04:00
|
|
|
|
2010-02-26 03:23:44 +03:00
|
|
|
|
2010-02-13 23:21:08 +03:00
|
|
|
pdf: docspdf codepdf
|
2009-06-14 01:37:06 +04:00
|
|
|
|
2009-06-02 23:54:45 +04:00
|
|
|
# generate pdf versions of main docs
|
2010-09-10 02:54:34 +04:00
|
|
|
# docspdf:
|
|
|
|
# -for d in $(DOCFILES); do (cd site && ln -sf ../$$d && pandoc $$d -w pdf && rm -f $$d); done
|
2010-02-13 23:21:08 +03:00
|
|
|
|
|
|
|
# format all code as a pdf for offline reading
|
2011-09-02 05:00:53 +04:00
|
|
|
ENSCRIPT=enscript -q --header='$$n|$$D{%+}|Page $$% of $$=' --highlight=haskell --line-numbers --font=Courier6 --color -o-
|
2010-02-13 23:21:08 +03:00
|
|
|
codepdf:
|
|
|
|
$(ENSCRIPT) --pretty-print=makefile hledger.cabal >cabal.ps
|
|
|
|
$(ENSCRIPT) --pretty-print=makefile Makefile >make.ps
|
|
|
|
$(ENSCRIPT) --pretty-print=haskell $(SOURCEFILES) >haskell.ps
|
|
|
|
cat cabal.ps make.ps haskell.ps | ps2pdf - >code.pdf
|
|
|
|
|
|
|
|
# view all docs and code as pdf
|
2010-05-31 05:23:30 +04:00
|
|
|
PDFS=site/{README,README2,MANUAL,NEWS,CONTRIBUTORS,SCREENSHOTS}.pdf code.pdf
|
2010-02-13 23:21:08 +03:00
|
|
|
viewall: pdf
|
2010-02-26 03:24:04 +03:00
|
|
|
$(VIEWPDF) $(PDFS)
|
2010-02-13 23:21:08 +03:00
|
|
|
|
|
|
|
# print all docs and code for offline reading
|
|
|
|
printall: pdf
|
2010-02-26 03:24:04 +03:00
|
|
|
$(PRINT) $(PDFS)
|
2010-02-13 23:21:08 +03:00
|
|
|
|
|
|
|
# push latest docs etc. and update the hledger.org site
|
2010-05-17 18:33:05 +04:00
|
|
|
pushdocs: push
|
2010-07-19 02:22:11 +04:00
|
|
|
ssh simon@joyful.com 'make -C/repos/hledger docs'
|
2009-05-29 12:29:04 +04:00
|
|
|
|
2011-04-22 20:16:31 +04:00
|
|
|
# dump all executables' command line help into files for review
|
|
|
|
EXES=hledger hledger-vty hledger-web hledger-chart
|
|
|
|
savehelp:
|
|
|
|
for e in $(EXES); do $$e --help >.HELP_$$e; done
|
|
|
|
|
2010-11-20 00:39:17 +03:00
|
|
|
# generate api & other code docs
|
2010-11-20 01:04:20 +03:00
|
|
|
codedocs: hscolour apihaddock codehaddock coverage #sourcegraph #hoogle
|
2010-11-20 00:39:17 +03:00
|
|
|
|
|
|
|
# browse the code docs
|
|
|
|
viewcodedocs:
|
|
|
|
$(VIEWHTML) site/code-doc/index.html
|
|
|
|
|
|
|
|
#http://www.haskell.org/haddock/doc/html/invoking.html
|
|
|
|
#$(subst -D,--optghc=-D,$(DEFINEFLAGS))
|
2011-04-22 23:04:47 +04:00
|
|
|
HADDOCK=haddock --no-warnings --prologue .haddockprologue #--optghc='-hide-package monads-tf'
|
2010-11-20 00:39:17 +03:00
|
|
|
|
|
|
|
.haddocksynopsis: hledger/hledger.cabal
|
|
|
|
grep synopsis $< | sed -e 's/synopsis: *//' >$@
|
|
|
|
|
|
|
|
.haddockprologue: hledger/hledger.cabal
|
|
|
|
cat $< | perl -ne 'print if (/^description:/../^$$/)' | sed -e 's/^description: *//' >$@
|
|
|
|
printf "\nThis haddock covers all hledger-* packages, for individual package haddocks see hackage.\n" >>$@
|
|
|
|
|
2011-08-19 23:58:56 +04:00
|
|
|
haddock: apihaddock internalhaddock
|
|
|
|
|
2010-11-20 00:39:17 +03:00
|
|
|
# generate external api docs for the whole project
|
2011-08-19 23:58:56 +04:00
|
|
|
apihaddock: linkhledgerwebdir .haddockprologue
|
2011-04-22 23:04:47 +04:00
|
|
|
$(HADDOCK) --title "hledger & hledger-lib API docs" \
|
2010-11-20 00:39:17 +03:00
|
|
|
-o site/api-doc \
|
|
|
|
--html \
|
|
|
|
--source-module=../code-doc/src/%{MODULE/./-}.html \
|
|
|
|
--source-entity=../code-doc/src/%{MODULE/./-}.html#%N \
|
2011-08-19 22:39:13 +04:00
|
|
|
$(HADDOCKLIBSOURCEFILES)
|
2010-11-20 00:39:17 +03:00
|
|
|
|
|
|
|
# generate internal code docs for the whole project
|
2011-06-03 21:10:27 +04:00
|
|
|
# Very fragile. Things that may help:
|
|
|
|
# ln -s hledger/Hledger
|
|
|
|
# ln -s hledger-web/routes
|
|
|
|
# cabal install hledger-lib hledger ?
|
|
|
|
# mkdir Hledger; cd Hledger; for f in ../hledger{,-lib}/Hledger/*; do ln -s $f; done
|
2010-11-20 00:39:17 +03:00
|
|
|
codehaddock: linkhledgerwebdir .haddockprologue
|
2011-04-22 23:04:47 +04:00
|
|
|
$(HADDOCK) --title "hledger internal code docs, all packages" \
|
2010-11-20 00:39:17 +03:00
|
|
|
-o site/code-doc \
|
|
|
|
--ignore-all-exports \
|
|
|
|
--html \
|
|
|
|
--source-module=../code-doc/src/%{MODULE/./-}.html \
|
|
|
|
--source-entity=../code-doc/src/%{MODULE/./-}.html#%N \
|
2011-08-19 22:39:13 +04:00
|
|
|
$(HADDOCKSOURCEFILES)
|
2010-11-20 00:39:17 +03:00
|
|
|
|
2011-06-03 21:10:27 +04:00
|
|
|
# http://www.cs.york.ac.uk/fp/darcs/hscolour/
|
|
|
|
HSCOLOUR=HsColour -css
|
2009-06-02 23:54:45 +04:00
|
|
|
hscolour:
|
2010-11-20 00:39:17 +03:00
|
|
|
mkdir -p site/code-doc/src
|
2011-08-19 22:39:13 +04:00
|
|
|
for f in $(HADDOCKSOURCEFILES); do \
|
2010-11-20 00:39:17 +03:00
|
|
|
$(HSCOLOUR) -anchor $$f -osite/code-doc/src/`echo $$f | sed -e's%[^/]*/%%' | sed -e's%/%-%g' | sed -e's%\.hs$$%.html%'` ; \
|
|
|
|
done
|
2009-05-29 12:29:04 +04:00
|
|
|
|
2010-04-07 03:44:51 +04:00
|
|
|
sourcegraph:
|
2010-11-20 00:39:17 +03:00
|
|
|
for p in $(PACKAGES); do (cd $$p; SourceGraph $$p.cabal); done
|
|
|
|
|
|
|
|
# # generate external api docs for each package
|
|
|
|
# allhaddock: allcabalhaddock\ --hyperlink-source\ --executables
|
|
|
|
|
|
|
|
# # generate internal code docs for each package
|
|
|
|
# allhaddockinternal: allcabalhaddock\ --hyperlink-source\ --executables\ --internal
|
|
|
|
|
|
|
|
# # generate hoogle indices for each package
|
|
|
|
# allhoogle: allcabalhaddock\ --hoogle\ --executables
|
2010-04-07 03:44:51 +04:00
|
|
|
|
2009-05-29 12:29:04 +04:00
|
|
|
#set up the hoogle web interface
|
2010-11-20 00:39:17 +03:00
|
|
|
## We munge haddock and hoogle into a rough but useful framed layout.
|
|
|
|
## For this to work the hoogle cgi must be built with base target "main".
|
|
|
|
## XXX move the framed index building into haddock: ?
|
|
|
|
# sed -i -e 's%^></HEAD%><base target="main"></HEAD%' site/api-doc/modules-index.html ; \
|
|
|
|
# cp site/api-doc-frames.html site/api-doc/index.html ; \
|
|
|
|
# # cp site/hoogle-small.html site/api-doc
|
|
|
|
#
|
2009-05-29 12:29:04 +04:00
|
|
|
#uses a hoogle source tree configured with --datadir=., patched to fix haddock urls/target frame
|
2010-11-20 00:39:17 +03:00
|
|
|
# HOOGLESRC=/usr/local/src/hoogle
|
|
|
|
# HOOGLE=$(HOOGLESRC)/dist/build/hoogle/hoogle
|
|
|
|
# HOOGLEVER=`$(HOOGLE) --version |tail -n 1 | sed -e 's/Version /hoogle-/'`
|
|
|
|
# hoogle: hoogleindex
|
|
|
|
# if test -f $(HOOGLE) ; then \
|
|
|
|
# cd site/api-doc && \
|
|
|
|
# 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
|
|
|
|
#
|
2009-05-29 12:29:04 +04:00
|
|
|
#generate a hoogle index
|
2010-11-20 00:39:17 +03:00
|
|
|
# hoogleindex:
|
|
|
|
# $(HADDOCK) -o site/api-doc --hoogle $(MAIN) && \
|
|
|
|
# cd site/api-doc && \
|
|
|
|
# hoogle --convert=main.txt --output=default.hoo
|
2009-05-29 12:29:04 +04:00
|
|
|
|
|
|
|
######################################################################
|
|
|
|
# RELEASING
|
2009-01-25 11:09:09 +03:00
|
|
|
|
2009-12-11 01:43:23 +03:00
|
|
|
# Version numbering. See also VERSION and Version.hs.
|
|
|
|
#
|
|
|
|
# hledger's version number appears in:
|
2009-02-26 20:37:46 +03:00
|
|
|
# hledger --version
|
2009-02-27 05:55:54 +03:00
|
|
|
# hledger's cabal file
|
|
|
|
# darcs tags
|
|
|
|
# hackage tarball filenames
|
|
|
|
# hackage pages
|
2009-02-26 20:37:46 +03:00
|
|
|
#
|
2009-12-11 01:43:23 +03:00
|
|
|
# Some old version numbering goals:
|
2009-02-26 20:37:46 +03:00
|
|
|
# 1 automation, robustness, simplicity, platform independence
|
|
|
|
# 2 cabal versions must be all-numeric
|
2009-02-27 05:55:54 +03:00
|
|
|
# 3 release versions can be concise (without extra .0's)
|
2009-02-26 20:37:46 +03:00
|
|
|
# 4 releases should have a corresponding darcs tag
|
|
|
|
# 5 development builds should have a precise version appearing in --version
|
|
|
|
# 6 development builds should generate cabal packages with non-confusing versions
|
2009-02-27 05:55:54 +03:00
|
|
|
# 7 there should be a way to mark builds/releases as alpha or beta
|
|
|
|
# 8 it should be easy to darcs get the .0 release even after bugfix releases
|
|
|
|
# 9 avoid unnecessary compiling and linking
|
|
|
|
# 10 minimise rcs noise and syncing issues (commits, unrecorded changes)
|
2009-02-26 20:37:46 +03:00
|
|
|
#
|
2009-12-11 01:43:23 +03:00
|
|
|
# Current policy:
|
|
|
|
#
|
|
|
|
# - We follow http://haskell.org/haskellwiki/Package_versioning_policy
|
|
|
|
#
|
|
|
|
# - The full release version is ma.jor.minor, where minor is 0 for a
|
|
|
|
# normal release or 1..n for bugfix releases.
|
|
|
|
#
|
|
|
|
# - The elided release version is ma.jor when minor is 0. We use it for
|
|
|
|
# hackage releases when possible, trusting it doesn't cause trouble..
|
|
|
|
#
|
|
|
|
# - The build version is ma.jor.minor+patches, where patches is the number
|
|
|
|
# of patches applied in the current repo since the last release tag.
|
|
|
|
#
|
|
|
|
# - The release tag in the repo is the full release version.
|
|
|
|
#
|
|
|
|
# - hledger --version shows the release version or build version as
|
|
|
|
# appropriate.
|
|
|
|
#
|
2009-12-12 05:35:09 +03:00
|
|
|
# - The VERSION file must be updated manually before a release.
|
|
|
|
#
|
2010-02-13 21:39:49 +03:00
|
|
|
# - "make simplebench" depends on version numbers in BENCHEXES, these also
|
2009-12-12 05:35:09 +03:00
|
|
|
# must be updated manually.
|
|
|
|
#
|
|
|
|
# - "make" updates the version in most other places, and defines PATCHES.
|
|
|
|
# Note "cabal build" should also do this but doesn't yet.
|
|
|
|
#
|
|
|
|
# - "make release" additionally records the main version number-affected
|
|
|
|
# files, and tags the repo with the release tag.
|
2009-12-12 05:55:59 +03:00
|
|
|
|
|
|
|
# Build a release, tag the repo, prepare a cabal package
|
2010-09-07 01:00:19 +04:00
|
|
|
# First update VERSION. Eg:
|
|
|
|
# a normal release: echo 0.7 >VERSION; make release
|
2009-12-12 23:40:54 +03:00
|
|
|
# a bugfix release: echo 0.7.1 >VERSION; make release
|
2010-09-07 01:00:19 +04:00
|
|
|
release: releasetest setandrecordversion tagrelease
|
2009-06-22 23:52:58 +04:00
|
|
|
|
2009-12-12 05:55:59 +03:00
|
|
|
# Upload the latest cabal package and update hledger.org
|
2010-12-11 01:09:32 +03:00
|
|
|
upload: allcabalsdist hackageupload pushdocs
|
2009-12-12 05:55:59 +03:00
|
|
|
|
|
|
|
releaseandupload: release upload
|
2009-02-27 05:55:54 +03:00
|
|
|
|
2010-07-10 17:09:49 +04:00
|
|
|
|
|
|
|
# update the version number in local files, and prompt to record changes
|
|
|
|
# in these files. Triggered by "make release".
|
2011-04-18 11:26:58 +04:00
|
|
|
setandrecordversion: setversion
|
2010-07-18 03:09:24 +04:00
|
|
|
darcs record -m "bump version" $(VERSIONFILE) $(VERSIONSENSITIVEFILES)
|
2010-07-10 17:09:49 +04:00
|
|
|
|
2010-12-07 04:54:51 +03:00
|
|
|
# update the version string in local files. This should be run immediately
|
|
|
|
# after editing the VERSION file.
|
2010-07-10 17:09:49 +04:00
|
|
|
setversion: $(VERSIONSENSITIVEFILES)
|
|
|
|
|
2010-12-07 04:54:51 +03:00
|
|
|
# re-update version string even if it seems unchanged
|
2010-09-10 02:54:34 +04:00
|
|
|
Setversion:
|
|
|
|
touch $(VERSIONFILE); make setversion
|
|
|
|
|
|
|
|
hledger/Hledger/Cli/Version.hs: $(VERSIONFILE)
|
2010-04-15 01:51:02 +04:00
|
|
|
perl -p -e "s/(^version *= *)\".*?\"/\1\"$(VERSION3)\"/" -i $@
|
2009-02-27 05:55:54 +03:00
|
|
|
|
2010-09-10 02:54:34 +04:00
|
|
|
hledger-lib/hledger-lib.cabal: $(VERSIONFILE)
|
|
|
|
perl -p -e "s/(^ *version:) *.*/\1 $(VERSION)/" -i $@
|
|
|
|
|
2010-12-07 04:54:51 +03:00
|
|
|
hledger/hledger.cabal: $(VERSIONFILE)
|
2010-04-15 02:36:11 +04:00
|
|
|
perl -p -e "s/(^ *version:) *.*/\1 $(VERSION)/" -i $@
|
2010-09-10 02:54:34 +04:00
|
|
|
perl -p -e "s/(^[ ,]*hledger-lib *[>=]=) *.*/\1 $(VERSION)/" -i $@
|
2009-02-27 05:55:54 +03:00
|
|
|
|
2010-09-10 02:54:34 +04:00
|
|
|
hledger-chart/hledger-chart.cabal: $(VERSIONFILE)
|
|
|
|
perl -p -e "s/(^ *version:) *.*/\1 $(VERSION)/" -i $@
|
|
|
|
perl -p -e "s/(^[ ,]*hledger *[>=]=) *.*/\1 $(VERSION)/" -i $@
|
|
|
|
perl -p -e "s/(^[ ,]*hledger-lib *[>=]=) *.*/\1 $(VERSION)/" -i $@
|
|
|
|
|
|
|
|
hledger-vty/hledger-vty.cabal: $(VERSIONFILE)
|
|
|
|
perl -p -e "s/(^ *version:) *.*/\1 $(VERSION)/" -i $@
|
|
|
|
perl -p -e "s/(^[ ,]*hledger *[>=]=) *.*/\1 $(VERSION)/" -i $@
|
|
|
|
perl -p -e "s/(^[ ,]*hledger-lib *[>=]=) *.*/\1 $(VERSION)/" -i $@
|
|
|
|
|
|
|
|
hledger-web/hledger-web.cabal: $(VERSIONFILE)
|
2010-04-15 02:36:11 +04:00
|
|
|
perl -p -e "s/(^ *version:) *.*/\1 $(VERSION)/" -i $@
|
2010-09-10 02:54:34 +04:00
|
|
|
perl -p -e "s/(^[ ,]*hledger *[>=]=) *.*/\1 $(VERSION)/" -i $@
|
|
|
|
perl -p -e "s/(^[ ,]*hledger-lib *[>=]=) *.*/\1 $(VERSION)/" -i $@
|
2009-02-27 05:55:54 +03:00
|
|
|
|
2010-12-07 04:54:51 +03:00
|
|
|
hledger-web/.hledger/web/.version: $(VERSIONFILE)
|
|
|
|
cat $(VERSIONFILE) >$@
|
|
|
|
|
2010-07-18 03:09:24 +04:00
|
|
|
MANUAL.markdown: $(VERSIONFILE)
|
2010-12-07 04:54:51 +03:00
|
|
|
perl -p -e "s/(^This is the.*?manual for hledger.*?) +[0-9.]+/\1 $(VERSION3)./" -i $@
|
2010-07-18 03:09:24 +04:00
|
|
|
|
2010-07-25 02:08:54 +04:00
|
|
|
DOWNLOAD.markdown: $(VERSIONFILE)
|
2011-04-18 11:26:58 +04:00
|
|
|
perl -p -e "s/hledger(|-chart|-web|-vty)-[0-9.]+-/hledger\1-$(VERSION)-/g" -i $@
|
2010-07-25 02:08:54 +04:00
|
|
|
|
2009-02-26 20:37:46 +03:00
|
|
|
tagrelease:
|
2009-02-27 05:55:54 +03:00
|
|
|
darcs tag $(VERSION3)
|
2009-02-26 20:37:46 +03:00
|
|
|
|
2009-05-29 12:29:04 +04:00
|
|
|
# display a hackage upload command reminder
|
2009-02-27 05:55:54 +03:00
|
|
|
hackageupload:
|
2010-12-11 01:09:32 +03:00
|
|
|
for p in $(PACKAGES); do cabal upload $$p/dist/$$p-$(VERSION).tar.gz -v3; done
|
2009-02-26 20:37:46 +03:00
|
|
|
|
2009-05-29 12:29:04 +04:00
|
|
|
# send unpushed patches to the mail list
|
|
|
|
send:
|
|
|
|
darcs send http://joyful.com/repos/hledger --to=hledger@googlegroups.com --edit-description
|
2008-11-24 01:15:51 +03:00
|
|
|
|
2009-05-30 01:00:38 +04:00
|
|
|
# push patches and anything else pending to the public server
|
2009-06-05 06:07:38 +04:00
|
|
|
push: pushprofs pushbinary
|
2010-07-19 02:22:11 +04:00
|
|
|
darcs push simon@joyful.com:/repos/hledger
|
2008-10-18 08:34:41 +04:00
|
|
|
|
2009-05-30 01:00:38 +04:00
|
|
|
# pull anything pending from the public server
|
|
|
|
pull: pullprofs
|
2010-07-19 02:22:11 +04:00
|
|
|
darcs pull -a simon@joyful.com:/repos/hledger
|
2009-05-30 01:00:38 +04:00
|
|
|
|
2009-06-05 14:47:01 +04:00
|
|
|
# push any new profiles and benchmark results to the public site
|
2009-06-05 06:07:38 +04:00
|
|
|
# beware, results will vary depending on which machine generated them
|
2009-05-29 23:26:09 +04:00
|
|
|
pushprofs:
|
2010-07-19 02:22:11 +04:00
|
|
|
rsync -azP profs/ simon@joyful.com:/repos/hledger/profs/
|
2009-05-30 01:00:38 +04:00
|
|
|
|
2009-06-05 14:47:01 +04:00
|
|
|
# fetch any new profiles and benchmark results from the public site
|
2009-05-30 01:00:38 +04:00
|
|
|
pullprofs:
|
2010-07-19 02:22:11 +04:00
|
|
|
rsync -azP simon@joyful.com:/repos/hledger/profs/ profs/
|
2009-05-29 23:26:09 +04:00
|
|
|
|
2010-09-07 01:00:19 +04:00
|
|
|
# compress the just-built platform binary. make hledgerPLATFORM first. Use
|
|
|
|
# the win variant on windows.
|
|
|
|
compressbinary:
|
|
|
|
gzip -9 bin/$(BINARYFILENAME)
|
|
|
|
compressbinarywin:
|
2010-07-19 02:23:00 +04:00
|
|
|
cd bin; zip -9 $(BINARYFILENAME).zip $(BINARYFILENAME)
|
2010-09-07 01:00:19 +04:00
|
|
|
|
|
|
|
# push the last-updated platform binary to the public download directory
|
|
|
|
pushbinary:
|
|
|
|
cd bin; rsync -aP `ls -t | head -1` simon@joyful.com:/repos/hledger/site/download/
|
2010-07-19 02:23:00 +04:00
|
|
|
|
2009-06-05 04:55:20 +04:00
|
|
|
|
2009-05-29 12:29:04 +04:00
|
|
|
# show project stats useful for release notes
|
2011-09-02 05:00:53 +04:00
|
|
|
showreleasestats stats: \
|
2011-04-22 22:47:57 +04:00
|
|
|
showreleasedays \
|
|
|
|
showunreleasedchangecount \
|
|
|
|
showloc \
|
|
|
|
showtestcount \
|
|
|
|
showunittestcoverage \
|
|
|
|
showreleaseauthors \
|
|
|
|
showunreleasedcodechanges \
|
|
|
|
showunpushedchanges
|
|
|
|
# simplebench
|
|
|
|
# showerrors
|
|
|
|
|
|
|
|
showreleasedays:
|
|
|
|
@echo Days since last release:
|
|
|
|
@tools/dayssincerelease.hs | head -1 | cut -d' ' -f-1
|
|
|
|
@echo
|
2011-04-18 11:26:58 +04:00
|
|
|
|
2011-04-22 22:47:57 +04:00
|
|
|
showunreleasedchangecount:
|
|
|
|
@echo Commits since last release:
|
|
|
|
@darcs changes --from-tag . --count
|
2011-04-18 11:26:58 +04:00
|
|
|
@echo
|
2009-01-21 01:27:32 +03:00
|
|
|
|
2009-05-17 18:13:06 +04:00
|
|
|
showreleaseauthors:
|
2008-11-24 00:50:38 +03:00
|
|
|
@echo Patch authors since last release:
|
2011-04-18 11:26:58 +04:00
|
|
|
@darcs changes --from-tag . |grep '^\w' |cut -c 31- |sort |uniq
|
2009-05-29 12:29:04 +04:00
|
|
|
@echo
|
2008-11-24 00:50:38 +03:00
|
|
|
|
2009-05-17 18:13:06 +04:00
|
|
|
showloc:
|
2011-04-22 22:47:57 +04:00
|
|
|
@echo Current lines of code including tests:
|
2010-05-24 02:46:40 +04:00
|
|
|
@sloccount `ls $(SOURCEFILES)` | grep haskell:
|
2009-05-29 12:29:04 +04:00
|
|
|
@echo
|
2009-05-17 18:13:06 +04:00
|
|
|
|
2011-04-22 22:47:57 +04:00
|
|
|
showtestcount:
|
|
|
|
@echo "Unit tests:"
|
|
|
|
@hledger test 2>&1 | cut -d' ' -f2
|
|
|
|
@echo "Functional tests:"
|
|
|
|
@make --no-print functest | egrep '^ Total' | awk '{print $$2}'
|
|
|
|
@echo
|
|
|
|
|
|
|
|
showunittestcoverage:
|
|
|
|
@echo Unit test coverage:
|
|
|
|
@make --no-print quickcoverage | grep 'expressions'
|
|
|
|
@echo
|
2009-06-04 05:33:31 +04:00
|
|
|
|
2010-05-24 02:46:40 +04:00
|
|
|
# showerrors:
|
|
|
|
# @echo Known errors:
|
|
|
|
# @awk '/^** errors/, /^** / && !/^** errors/' NOTES | grep '^\*\*\* ' | tail +1
|
|
|
|
# @echo
|
2009-05-17 18:13:06 +04:00
|
|
|
|
2011-04-22 22:47:57 +04:00
|
|
|
showunpushedchanges unpushed:
|
|
|
|
@echo "Changes not yet pushed upstream (to `darcs show repo | grep 'Default Remote' | cut -c 17-`):"
|
2010-07-19 02:22:11 +04:00
|
|
|
@-darcs push simon@joyful.com:/repos/hledger --dry-run | grep '*' | tac
|
2009-05-29 12:29:04 +04:00
|
|
|
@echo
|
2009-05-17 18:13:06 +04:00
|
|
|
|
2011-04-22 22:47:57 +04:00
|
|
|
showunreleasedcodechanges unreleased:
|
|
|
|
@echo "hledger code changes since last release:"
|
|
|
|
@darcs changes --from-tag . --matches "not (name docs: or name doc: or name site: or name tools:)" | grep '*'
|
2010-02-27 21:16:36 +03:00
|
|
|
@echo
|
|
|
|
|
2011-04-22 22:47:57 +04:00
|
|
|
showcodechanges:
|
|
|
|
@echo "hledger code changes:"
|
|
|
|
@darcs changes --matches "not (name docs: or name site: or name tools:)" | egrep '^ +(\*|tagged)'
|
2009-05-29 12:29:04 +04:00
|
|
|
@echo
|
|
|
|
|
|
|
|
######################################################################
|
|
|
|
# MISCELLANEOUS
|
|
|
|
|
2010-09-10 05:57:41 +04:00
|
|
|
# fix permissions (eg after darcs get)
|
|
|
|
fixperms:
|
|
|
|
chmod +x tools/* $(MAIN) hledger-*/Main.hs
|
|
|
|
|
2009-05-29 12:29:04 +04:00
|
|
|
tag: emacstags
|
|
|
|
|
|
|
|
emacstags:
|
2010-09-10 02:54:34 +04:00
|
|
|
-@rm -f TAGS; hasktags -e $(SOURCEFILES) $(CABALFILES) Makefile
|
2009-05-29 12:29:04 +04:00
|
|
|
|
|
|
|
clean:
|
2010-07-09 06:09:40 +04:00
|
|
|
rm -rf `find . -name "*.o" -o -name "*.hi" -o -name "*~" -o -name "darcs-amend-record*" -o -name "*-darcs-backup*"`
|
2009-05-29 12:29:04 +04:00
|
|
|
|
2009-06-02 23:54:45 +04:00
|
|
|
Clean: clean cleandocs
|
2010-09-03 06:08:47 +04:00
|
|
|
rm -f bin/hledger TAGS tags
|
2008-10-03 11:40:28 +04:00
|
|
|
|
2010-12-06 21:37:00 +03:00
|
|
|
######################################################################
|
|
|
|
# LOCAL
|
|
|
|
|
|
|
|
# deploy latest build at demo.hledger.org
|
|
|
|
deploy:
|
|
|
|
ssh -t simon@joyful.com make -C /repos/hledger deploy
|
|
|
|
|
|
|
|
# autobuild web ui showing my personal journal
|
|
|
|
autowebmine:
|
|
|
|
rm -f bin/hledger-web
|
|
|
|
sp --no-exts --no-default-map -o bin/hledger-web ghc --make hledger-web/Main.hs -ihledger-web -ihledger $(BUILDFLAGS) --run -B -f ~/personal/2010.journal
|
|
|
|
|
|
|
|
# auto-recompile and run (with the specified argument) whenever a module changes.
|
|
|
|
# sp is from searchpath.org, you might need the patched version from
|
|
|
|
# http://joyful.com/repos/searchpath.
|
2010-12-07 02:35:44 +03:00
|
|
|
# auto%:
|
2010-12-06 21:37:00 +03:00
|
|
|
# sp --no-exts --no-default-map -o bin/hledger ghc --make $(MAIN) $(BUILDFLAGS) --run $*
|
|
|
|
|
|
|
|
allsrclinks:
|
|
|
|
mkdir -p allsrc/Hledger
|
|
|
|
cd allsrc/Hledger; \
|
|
|
|
for p in $(PACKAGES); do \
|
|
|
|
for f in ../../$$p/Hledger/*; do ln -sf $$f; done; done
|
|
|
|
|
|
|
|
hledgersrclinks:
|
|
|
|
cd hledger/Hledger; \
|
|
|
|
for f in ../../hledger-lib/Hledger/*; do ln -sf $$f; done
|
|
|
|
|