diff --git a/Makefile b/Makefile index 287b8ebdc..503d57ffb 100644 --- a/Makefile +++ b/Makefile @@ -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