blob: 082a59890d5b2c92b14c9923b064f7a7bf61b4f1 [file] [log] [blame]
Gilles Peskine2a079ac2019-10-15 16:08:13 +02001PANDOC = pandoc
2
3default: all
4
5all_markdown = \
Gilles Peskinedb82c582021-01-18 20:20:48 +01006 docs/psa/index.md \
7 docs/psa/accel/index.md \
8 docs/psa/entropy/index.md \
9 docs/psa/se/index.md \
Gilles Peskine2a079ac2019-10-15 16:08:13 +020010 # 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 $@ $<