2018-01-20 23:22:52 +00:00
|
|
|
build: src/**.agda
|
2018-05-25 23:15:57 +00:00
|
|
|
agda --library-file ./libraries src/Cat.agda
|
2018-03-19 13:08:59 +00:00
|
|
|
|
|
|
|
clean:
|
2018-03-21 11:28:26 +00:00
|
|
|
find src -name "*.agdai" -type f -delete
|
2018-05-15 14:08:29 +00:00
|
|
|
|
2018-05-29 13:35:20 +00:00
|
|
|
html: src/**.agda
|
2018-05-15 14:08:29 +00:00
|
|
|
agda --html src/Cat.agda
|
|
|
|
|
|
|
|
upload: html
|
|
|
|
scp -r html/ remote11.chalmers.se:www/cat/doc/
|
2018-05-29 13:35:20 +00:00
|
|
|
|
|
|
|
.PHONY: upload clean
|