mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 14:25:40 +01:00
Use $(MAKE), not make
For the sake of systems where we want gmake.
This commit is contained in:
parent
633c6b6485
commit
fc36708697
2
Makefile
2
Makefile
@ -68,7 +68,7 @@ test: check
|
|||||||
# note: for coverage testing, build with:
|
# note: for coverage testing, build with:
|
||||||
# make CFLAGS='--coverage -g3 -O0'
|
# make CFLAGS='--coverage -g3 -O0'
|
||||||
covtest:
|
covtest:
|
||||||
make check
|
$(MAKE) check
|
||||||
programs/test/selftest
|
programs/test/selftest
|
||||||
( cd tests && ./compat.sh )
|
( cd tests && ./compat.sh )
|
||||||
( cd tests && ./ssl-opt.sh )
|
( cd tests && ./ssl-opt.sh )
|
||||||
|
@ -81,7 +81,7 @@ endif
|
|||||||
all: $(APPS)
|
all: $(APPS)
|
||||||
|
|
||||||
$(DEP):
|
$(DEP):
|
||||||
make -C ../library
|
$(MAKE) -C ../library
|
||||||
|
|
||||||
aes/aescrypt2$(EXEXT): aes/aescrypt2.c $(DEP)
|
aes/aescrypt2$(EXEXT): aes/aescrypt2.c $(DEP)
|
||||||
echo " CC aes/aescrypt2.c"
|
echo " CC aes/aescrypt2.c"
|
||||||
|
@ -92,7 +92,7 @@ APPS = test_suite_aes.ecb$(EXEXT) test_suite_aes.cbc$(EXEXT) \
|
|||||||
all: $(APPS)
|
all: $(APPS)
|
||||||
|
|
||||||
$(DEP):
|
$(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
|
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 $@"
|
echo " Gen $@"
|
||||||
|
Loading…
Reference in New Issue
Block a user