Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
.PHONY : install agda repl libHtml test testContainers testHtml golden docs
FILES = $(shell find src -type f)

build :
cabal build

install :
cabal install --overwrite-policy=always

Expand Down Expand Up @@ -29,5 +32,8 @@ testHtml : test/agda2hs
golden :
make -C test golden

clean :
make -C test clean

docs :
make -C docs html
2 changes: 1 addition & 1 deletion test/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,6 @@ renderTranslations : html/index.html html/fail/index.html renderTranslations.sh
./renderTranslations.sh

clean :
@rm -rf build/ html/
@rm -rf _build/ build/ html/

force-recompile :
Loading