blob: ab22fb16df191dae5d826102ffed879046c96c93 [file] [log] [blame]
Gilles Peskine49451762019-02-12 14:25:40 +01001PANDOC = pandoc
2
3default: all
4
5all_markdown = \
Gilles Peskine0b020022019-02-12 14:25:57 +01006 mbed-crypto-storage-specification.md \
Gilles Peskine1ff67cc2019-09-09 18:25:13 +02007 testing/driver-interface-test-strategy.md \
Gilles Peskine508caf52019-09-16 16:29:15 +02008 testing/test-framework.md \
Gilles Peskine49451762019-02-12 14:25:40 +01009 # This line is intentionally left blank
10
11html: $(all_markdown:.md=.html)
12pdf: $(all_markdown:.md=.pdf)
13all: html pdf
14
15.SUFFIXES:
16.SUFFIXES: .md .html .pdf
17
18.md.html:
19 $(PANDOC) -o $@ $<
20.md.pdf:
21 $(PANDOC) -o $@ $<
Gilles Peskine4b3db732019-09-09 18:26:20 +020022
23clean:
24 rm -f *.html *.pdf