Fix crypto submodule usage in Makefile
This commit is contained in:
parent
d65b11d868
commit
67df9e498f
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -22,7 +22,7 @@ lib:
|
|||
|
||||
tests: lib
|
||||
$(MAKE) -C tests
|
||||
ifdef USE_CRYPTO_SUBMODULE
|
||||
ifneq ($(USE_CRYPTO_SUBMODULE), 0)
|
||||
$(MAKE) CRYPTO_INCLUDES:="-I../../include -I../include" -C crypto/tests
|
||||
endif
|
||||
|
||||
|
@ -109,7 +109,7 @@ endif
|
|||
|
||||
check: lib tests
|
||||
$(MAKE) -C tests check
|
||||
ifdef USE_CRYPTO_SUBMODULE
|
||||
ifneq ($(USE_CRYPTO_SUBMODULE), 0)
|
||||
$(MAKE) CRYPTO_INCLUDES:="-I../../include -I../include" -C crypto/tests check
|
||||
endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue