blob: 7f5254fab7a2c0de3645d5ba8b770bb4e6af0890 [file] [log] [blame]
Gilles Peskineabeb58e2020-07-13 13:22:27 +02001PANDOC = pandoc
2
3default: all
4
5all_markdown = \
Ronald Cron45daa8d2024-10-03 09:38:27 +02006 config-split.md \
Gilles Peskineb51f96a2020-08-31 14:03:05 +02007 psa-conditional-inclusion-c.md \
Gilles Peskine278e5eb2020-07-13 11:28:20 +02008 psa-driver-developer-guide.md \
9 psa-driver-integration-guide.md \
Gilles Peskine2e66aca2020-07-13 11:27:13 +020010 psa-driver-interface.md \
Gilles Peskineabeb58e2020-07-13 13:22:27 +020011 # This line is intentionally left blank
12
13html: $(all_markdown:.md=.html)
14pdf: $(all_markdown:.md=.pdf)
15all: html pdf
16
17.SUFFIXES:
18.SUFFIXES: .md .html .pdf
19
20.md.html:
21 $(PANDOC) -o $@ $<
22.md.pdf:
23 $(PANDOC) -o $@ $<
24
25clean:
26 rm -f *.html *.pdf