12 lines
183 B
Makefile
12 lines
183 B
Makefile
build: src/**.agda
|
|
agda src/Cat.agda
|
|
|
|
clean:
|
|
find src -name "*.agdai" -type f -delete
|
|
|
|
html:
|
|
agda --html src/Cat.agda
|
|
|
|
upload: html
|
|
scp -r html/ remote11.chalmers.se:www/cat/doc/
|