1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-08-30 17:41:11 +03:00

crypto: Add a Makefile

This commit is contained in:
Jaeden Amero
2018-06-25 17:08:36 +01:00
committed by itayzafrir
parent 5a6ade8ab6
commit 1ff639d37c

20
crypto/Makefile Normal file
View File

@@ -0,0 +1,20 @@
.PHONY: all lib programs tests clean test
all: programs tests
lib:
$(MAKE) -C library
programs: lib
$(MAKE) -C programs
tests: lib
$(MAKE) -C tests
clean:
$(MAKE) -C library clean
$(MAKE) -C programs clean
$(MAKE) -C tests clean
test: lib tests
$(MAKE) -C tests test