mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-22 12:51:03 +00:00
Fix crypto submodule usage in Makefile
This commit is contained in:
parent
d65b11d868
commit
67df9e498f
4
Makefile
4
Makefile
|
@ -22,7 +22,7 @@ lib:
|
||||||
|
|
||||||
tests: lib
|
tests: lib
|
||||||
$(MAKE) -C tests
|
$(MAKE) -C tests
|
||||||
ifdef USE_CRYPTO_SUBMODULE
|
ifneq ($(USE_CRYPTO_SUBMODULE), 0)
|
||||||
$(MAKE) CRYPTO_INCLUDES:="-I../../include -I../include" -C crypto/tests
|
$(MAKE) CRYPTO_INCLUDES:="-I../../include -I../include" -C crypto/tests
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -109,7 +109,7 @@ endif
|
||||||
|
|
||||||
check: lib tests
|
check: lib tests
|
||||||
$(MAKE) -C tests check
|
$(MAKE) -C tests check
|
||||||
ifdef USE_CRYPTO_SUBMODULE
|
ifneq ($(USE_CRYPTO_SUBMODULE), 0)
|
||||||
$(MAKE) CRYPTO_INCLUDES:="-I../../include -I../include" -C crypto/tests check
|
$(MAKE) CRYPTO_INCLUDES:="-I../../include -I../include" -C crypto/tests check
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue