aboutsummaryrefslogtreecommitdiff
path: root/lib/mbedtls-2.27.0/docs/architecture/Makefile
diff options
context:
space:
mode:
authorAdam Harrison <adamdharrison@gmail.com>2023-07-06 06:37:41 -0400
committerAdam Harrison <adamdharrison@gmail.com>2023-07-06 06:37:41 -0400
commit9db10386430479067795bec66bb26343ff176ded (patch)
tree5ad0cf95abde7cf03afaf8f70af8549d46b09a46 /lib/mbedtls-2.27.0/docs/architecture/Makefile
parent57092d80cb07fa1a84873769fa92165426196054 (diff)
downloadlite-xl-plugin-manager-9db10386430479067795bec66bb26343ff176ded.tar.gz
lite-xl-plugin-manager-9db10386430479067795bec66bb26343ff176ded.zip
Removed old mbedtls, replacing with submodule.
Diffstat (limited to 'lib/mbedtls-2.27.0/docs/architecture/Makefile')
-rw-r--r--lib/mbedtls-2.27.0/docs/architecture/Makefile26
1 files changed, 0 insertions, 26 deletions
diff --git a/lib/mbedtls-2.27.0/docs/architecture/Makefile b/lib/mbedtls-2.27.0/docs/architecture/Makefile
deleted file mode 100644
index d8db2e0..0000000
--- a/lib/mbedtls-2.27.0/docs/architecture/Makefile
+++ /dev/null
@@ -1,26 +0,0 @@
-PANDOC = pandoc
-
-default: all
-
-all_markdown = \
- mbed-crypto-storage-specification.md \
- testing/driver-interface-test-strategy.md \
- testing/invasive-testing.md \
- testing/test-framework.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
- rm -f testing/*.html testing/*.pdf