blob: 0f38bfa23c6c61f113f63e7d82279c24a6c16f26 [file] [log] [blame]
Gilles Peskine2a079ac2019-10-15 16:08:13 +02001PANDOC = pandoc
2
3default: all
4
5all_markdown = \
6 psa/index.md \
7 psa/accel/index.md \
8 psa/entropy/index.md \
9 psa/se/index.md \
10 # This line is intentionally left blank
11
12html: $(all_markdown:.md=.html)
13all: html
14
15.SUFFIXES:
16.SUFFIXES: .md .html
17
18.md.html:
19 $(PANDOC) -o $@ $<