mirror of
https://github.com/ldericher/autodoc.git
synced 2025-12-06 15:43:01 +00:00
10 lines
185 B
Makefile
10 lines
185 B
Makefile
#%SRCPAT% \.md$
|
|
|
|
.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 $@ $<
|