tools: add ghci-ui rule, add hledger-ui to lists

This commit is contained in:
Simon Michael 2015-08-19 19:41:07 -07:00
parent 0098d1d211
commit 8f18560b05

View File

@ -89,11 +89,13 @@ SHELLTESTSTK=stack exec -- shelltest $(SHELLTESTOPTS)
PACKAGES=\
hledger-lib \
hledger \
hledger-ui \
hledger-web
INCLUDEPATHS=\
-ihledger-lib \
-ihledger \
-ihledger-ui \
-ihledger-web \
-ihledger-web/app
@ -770,6 +772,10 @@ ghci: \
$(call def-help,ghci, start a GHCI REPL and load the hledger-lib and hledger packages)
stack exec $(GHCI) -- $(BUILDFLAGS) hledger/Hledger/Cli/Main.hs
ghci-ui: \
$(call def-help,ghci-ui, start a GHCI REPL and load the hledger-lib, hledger and hledger-ui packages)
stack exec $(GHCI) -- $(BUILDFLAGS) hledger-ui/Hledger/UI/Main.hs
ghci-web: \
$(call def-help,ghci-web, start a GHCI REPL and load the hledger-lib, hledger and hledger-web packages)
stack exec $(GHCI) -- $(BUILDFLAGS) hledger-web/app/main.hs