chemodiversity/Makefile
Stefan Dresselhaus d1a1834846
created makefile
2018-04-22 12:10:27 +02:00

14 lines
193 B
Makefile

.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)