We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6055922 commit 1595db8Copy full SHA for 1595db8
GNUmakefile
@@ -18,9 +18,11 @@ setup: Everything.agda
18
19
.PHONY: Everything.agda
20
Everything.agda:
21
-# The command `cabal build` instead of the command `cabal install` was
22
-# required by `cabal-install 3.0.0.0`. See Issue #1001.
23
- cabal clean && cabal build
+# The command `cabal build` is needed by cabal-install 3.0.0.0 and the
+# command `cabal install` is needed by cabal-install <= 2.4.*. I did
+# not found any problem running both commands with different versions
24
+# of cabal-install. See Issue #1001.
25
+ cabal clean && cabal build && cabal install
26
cabal exec -- GenerateEverything
27
28
.PHONY: listings
0 commit comments