mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-23 21:05:46 +01:00
278e5ebf78
Driver developer's guide: introduction on how to write a driver. Driver integration guide: how to build Mbed TLS with drivers. Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
25 lines
415 B
Makefile
25 lines
415 B
Makefile
PANDOC = pandoc
|
|
|
|
default: all
|
|
|
|
all_markdown = \
|
|
psa-driver-developer-guide.md \
|
|
psa-driver-integration-guide.md \
|
|
psa-driver-interface.md \
|
|
# This line is intentionally left blank
|
|
|
|
html: $(all_markdown:.md=.html)
|
|
pdf: $(all_markdown:.md=.pdf)
|
|
all: html pdf
|
|
|
|
.SUFFIXES:
|
|
.SUFFIXES: .md .html .pdf
|
|
|
|
.md.html:
|
|
$(PANDOC) -o $@ $<
|
|
.md.pdf:
|
|
$(PANDOC) -o $@ $<
|
|
|
|
clean:
|
|
rm -f *.html *.pdf
|