aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn MacFarlane <[email protected]>2022-10-19 13:07:13 -0700
committerJohn MacFarlane <[email protected]>2022-10-19 13:07:13 -0700
commitfc8b0c4540dc7c9f6b89e10072414cb9872cd370 (patch)
treeff6d2f8963963f9ccd0317740549158455f1fe40 /Makefile
parent716f5a03879b091c1111454f00372e82eb4e917e (diff)
Add repl target to Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index d8fffb3d1..9db210cdc 100644
--- a/Makefile
+++ b/Makefile
@@ -36,6 +36,10 @@ ghcid: ## run ghcid
ghcid -c 'cabal repl pandoc'
.PHONY: ghcid
+repl: ## run cabal repl
+ cabal repl $(CABALOPTS) pandoc
+.PHONY: repl
+
# Note: to accept current results of golden tests,
# make test TESTARGS='--accept'
test: ## unoptimized build and run tests with cabal