* try to import mbedtls and build it * add stubs socket class * some boilterplate, read and write function implemented * more boilterplate / current error in handshake because no CA cert is setup * add something so skip ca verification, can ws curl https://google.com ! * cleanup / close implemented * tweak CMakefiles * typo in include * update readme * disable unittests
		
			
				
	
	
		
			20 lines
		
	
	
		
			318 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			318 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
PANDOC = pandoc
 | 
						|
 | 
						|
default: all
 | 
						|
 | 
						|
all_markdown = \
 | 
						|
	       mbed-crypto-storage-specification.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 $@ $<
 |