Add a directory for proposed specifications
Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
This commit is contained in:
parent
3ede1737dc
commit
abeb58e814
3
docs/.gitignore
vendored
Normal file
3
docs/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
*.html
|
||||
*.pdf
|
||||
!PSACryptoDriverModelSpec.pdf
|
2
docs/architecture/.gitignore
vendored
2
docs/architecture/.gitignore
vendored
@ -1,2 +0,0 @@
|
||||
*.html
|
||||
*.pdf
|
21
docs/proposed/Makefile
Normal file
21
docs/proposed/Makefile
Normal 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
4
docs/proposed/README
Normal 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.
|
Loading…
Reference in New Issue
Block a user