mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-03-06 03:19:45 +00:00
Working draft of the PSA cryptography unified interface specification. Eventually this document will be under Arm PSA architecture ownership, but for the time being this draft is maintained in Mbed TLS. Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
23 lines
333 B
Makefile
23 lines
333 B
Makefile
PANDOC = pandoc
|
|
|
|
default: all
|
|
|
|
all_markdown = \
|
|
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
|