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=\ PACKAGES=\
hledger-lib \ hledger-lib \
hledger \ hledger \
hledger-ui \
hledger-web hledger-web
INCLUDEPATHS=\ INCLUDEPATHS=\
-ihledger-lib \ -ihledger-lib \
-ihledger \ -ihledger \
-ihledger-ui \
-ihledger-web \ -ihledger-web \
-ihledger-web/app -ihledger-web/app
@ -770,6 +772,10 @@ ghci: \
$(call def-help,ghci, start a GHCI REPL and load the hledger-lib and hledger packages) $(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 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: \ ghci-web: \
$(call def-help,ghci-web, start a GHCI REPL and load the hledger-lib, hledger and hledger-web packages) $(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 stack exec $(GHCI) -- $(BUILDFLAGS) hledger-web/app/main.hs