From b68e7c8186d1c8a45e7f4b99e26d377c48f74293 Mon Sep 17 00:00:00 2001 From: Leonid Yuriev Date: Mon, 19 Apr 2021 15:32:59 +0000 Subject: [PATCH] mdbx-make: more thunk-targets for non-GNU `Makefile`. Change-Id: I95b8df96c9a2271b59a8e4fb099e946d47f99811 --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bb4aa053..d013cd95 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,7 @@ # This is thunk-Makefile for calling GNU Make 3.80 or above -all bench bench-quartet build-test check clean clean-bench cross-gcc cross-qemu dist doxygen gcc-analyzer install mdbx memcheck reformat release-assets strip test test-asan test-fault test-leak test-singleprocess test-ubsan test-valgrind tools: +all bench bench-quartet build-test check clean clean-bench cross-gcc cross-qemu dist doxygen gcc-analyzer install mdbx memcheck reformat release-assets strip test test-asan test-fault test-leak test-singleprocess test-ubsan test-valgrind tools \ +mdbx_test mdbx_chk mdbx_load mdbx_dump mdbx_stat mdbx_drop mdbx_copy: @CC=$(CC) \ CXX=`if test -n "$(CXX)" && which "$(CXX)" > /dev/null; then echo "$(CXX)"; elif test -n "$(CCC)" && which "$(CCC)" > /dev/null; then echo "$(CCC)"; else echo "c++"; fi` \ `which gmake || which gnumake || echo 'echo "GNU Make 3.80 or above is required"; exit 2;'` \