Add a directory for proposed specifications

Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
This commit is contained in:
Gilles Peskine 2020-07-13 13:22:27 +02:00
parent 3ede1737dc
commit abeb58e814
4 changed files with 28 additions and 2 deletions

3
docs/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
*.html
*.pdf
!PSACryptoDriverModelSpec.pdf

View File

@ -1,2 +0,0 @@
*.html
*.pdf

21
docs/proposed/Makefile Normal file
View File

@ -0,0 +1,21 @@
PANDOC = pandoc
default: all
all_markdown = \
# 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

4
docs/proposed/README Normal file
View File

@ -0,0 +1,4 @@
The documents in this directory are proposed specifications for Mbed
TLS features. They are not implemented yet, or only partially
implemented. Please follow activity on the `development` branch of
Mbed TLS if you are interested in these features.