14 lines
193 B
Makefile
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)
|