chemodiversity/Makefile

14 lines
193 B
Makefile
Raw Normal View History

2018-04-22 10:10:27 +00:00
.PHONY: run pdf ghci
INPUT = sketch.md.lhs
pdf: $(INPUT)
pandoc -f markdown+lhs+smart+emoji -o documentation.pdf $(INPUT)
run: $(INPUT)
runhaskell $(INPUT)
ghci: $(INPUT)
ghci $(INPUT)