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 39e9b0c commit 0c77f96Copy full SHA for 0c77f96
Makefile
@@ -1,6 +1,9 @@
1
.PHONY : install agda repl libHtml test testContainers testHtml golden docs
2
FILES = $(shell find src -type f)
3
4
+build :
5
+ cabal build
6
+
7
install :
8
cabal install --overwrite-policy=always
9
@@ -29,5 +32,8 @@ testHtml : test/agda2hs
29
32
golden :
30
33
make -C test golden
31
34
35
+clean :
36
+ make -C test clean
37
38
docs :
39
make -C docs html
test/Makefile
@@ -57,6 +57,6 @@ renderTranslations : html/index.html html/fail/index.html renderTranslations.sh
57
./renderTranslations.sh
58
59
clean :
60
- @rm -rf build/ html/
+ @rm -rf _build/ build/ html/
61
62
force-recompile :
0 commit comments