From 67df9e498fcab25df704ea6855bd90f8d4d1dd96 Mon Sep 17 00:00:00 2001 From: Andrzej Kurek Date: Tue, 16 Apr 2019 07:02:02 -0400 Subject: [PATCH] Fix crypto submodule usage in Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 2db26443b..c83c64e85 100644 --- a/Makefile +++ b/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