From 1875e9aac4bba290e191a0f692173c8c40316b55 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Tue, 16 Jan 2024 13:48:59 -0800 Subject: [PATCH] Makefile - fix cli build in `all`. --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2052331..6cdc54d 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,8 @@ PROFTARGET?=b5.md all: cabal test --ghc-options="$(GHC_OPTS)" --test-option=--hide-successes all - cabal build --ghc-options="$(GHC_OPTS)" -fexecutable commonmark-cli + cabal build --ghc-options="$(GHC_OPTS)" -fexecutable all + cabal list-bin commonmark-cli prof: cabal build --enable-profiling --ghc-options="${GHC_OPTS}" commonmark-cli