mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-09-01 05:01:58 +03:00
crypto: Add a Makefile
This commit is contained in:
20
crypto/Makefile
Normal file
20
crypto/Makefile
Normal 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
|
Reference in New Issue
Block a user