blob: 0aaf252b9200aa91fa8c9530560c7b9151201265 [file] [log] [blame]
PANDOC = pandoc
default: all
all_markdown = \
docs/psa/index.md \
docs/psa/se/index.md \
# This line is intentionally left blank
html: $(all_markdown:.md=.html)
all: html
.SUFFIXES:
.SUFFIXES: .md .html
.md.html:
$(PANDOC) -o $@ $<