From fc36708697866a26effa3c03045f844df9f94ebc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20P=C3=A9gouri=C3=A9-Gonnard?= Date: Fri, 26 Jun 2015 16:50:24 +0200 Subject: [PATCH] Use $(MAKE), not make For the sake of systems where we want gmake. --- Makefile | 2 +- programs/Makefile | 2 +- tests/Makefile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 1730f6d47..0e272c6dd 100644 --- a/Makefile +++ b/Makefile @@ -68,7 +68,7 @@ test: check # note: for coverage testing, build with: # make CFLAGS='--coverage -g3 -O0' covtest: - make check + $(MAKE) check programs/test/selftest ( cd tests && ./compat.sh ) ( cd tests && ./ssl-opt.sh ) diff --git a/programs/Makefile b/programs/Makefile index f62e2c68d..26aaa8bde 100644 --- a/programs/Makefile +++ b/programs/Makefile @@ -81,7 +81,7 @@ endif all: $(APPS) $(DEP): - make -C ../library + $(MAKE) -C ../library aes/aescrypt2$(EXEXT): aes/aescrypt2.c $(DEP) echo " CC aes/aescrypt2.c" diff --git a/tests/Makefile b/tests/Makefile index 731dcd908..dee7fdbda 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -92,7 +92,7 @@ APPS = test_suite_aes.ecb$(EXEXT) test_suite_aes.cbc$(EXEXT) \ all: $(APPS) $(DEP): - make -C ../library + $(MAKE) -C ../library test_suite_aes.ecb.c : suites/test_suite_aes.function suites/test_suite_aes.ecb.data scripts/generate_code.pl suites/helpers.function suites/main_test.function echo " Gen $@"