mirror of
https://github.com/isar/libmdbx.git
synced 2024-12-28 18:48:48 +08:00
70b7ec0c1c
Change-Id: Ib153834241e33c672867aa402d3fc66a06a489fa
9 lines
699 B
Makefile
9 lines
699 B
Makefile
# This is thunk-Makefile for calling GNU Make 3.80 or above
|
|
|
|
all options 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;'` \
|
|
$(MAKEFLAGS) -f GNUmakefile $@
|