autodoc/example_docs/simple md/Makefile

11 lines
185 B
Makefile
Raw Normal View History

2019-09-24 09:48:09 +00:00
#%SRCPAT% \.md$
2019-09-20 08:29:54 +00:00
.PHONY: all
all: simple.pdf simple.html
simple.pdf: simple.md
pandoc -s -f markdown -t latex -o $@ $<
simple.html: simple.md
pandoc -s -f markdown -t html -o $@ $<