Permalink
Switch branches/tags
Nothing to show
Find file
Fetching contributors…
Cannot retrieve contributors at this time
13 lines (8 sloc) 201 Bytes
all: GFA-spec.html GFA-spec.pdf
clean:
rm -f GFA-spec.html GFA-spec.pdf
.PHONY: all clean
%.html: %.md
pandoc -sS --toc --toc-depth=1 -o $@ $<
%.pdf: %.md
pandoc -S --toc --toc-depth=1 -o $@ $<