From 4c509ff933b88aa89beeb7e0e046072b33dfb563 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Sun, 6 Jul 2014 10:47:45 -0700 Subject: [PATCH] tools: make repl[lib,web], cabal repl in each package --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Makefile b/Makefile index d131e706d..1dbc9a77f 100644 --- a/Makefile +++ b/Makefile @@ -549,6 +549,15 @@ ghci: ghciweb: $(GHCI) $(BUILDFLAGS) $(WEBLANGEXTS) hledger-web/app/main.hs +repllib: + (cd hledger-lib; cabal repl) + +repl: + (cd hledger; cabal repl exe:hledger) + +replweb: + (cd hledger-web; cabal repl exe:hledger-web) + # generate standard sample journals samplejournals: data/sample.journal data/100x100x10.journal data/1000x1000x10.journal data/1000x10000x10.journal data/10000x1000x10.journal data/10000x10000x10.journal data/100000x1000x10.journal