|
Lines 1-24
Link Here
|
| 1 |
--- GNUmakefile.orig 2021-10-13 09:17:02.000000000 -0700 |
1 |
--- GNUmakefile.orig 2022-08-02 03:17:33.000000000 -0700 |
| 2 |
+++ GNUmakefile 2021-10-21 14:35:08.340353000 -0700 |
2 |
+++ GNUmakefile 2022-08-08 17:05:14.612729000 -0700 |
| 3 |
@@ -13,7 +13,7 @@ |
3 |
@@ -9,7 +9,7 @@ |
| 4 |
# in README and source code (see src/options.h) if you do. |
4 |
# Basic internal definitios. For a customizable variables and options see below. |
| 5 |
# |
5 |
# |
| 6 |
|
6 |
$(info // The GNU Make $(MAKE_VERSION)) |
| 7 |
-SHELL := env bash |
7 |
-SHELL := $(shell env bash -c 'echo $$BASH') |
| 8 |
+SHELL := env sh |
8 |
+SHELL := sh |
| 9 |
|
9 |
MAKE_VERx3 := $(shell printf "%3s%3s%3s" $(subst ., ,$(MAKE_VERSION))) |
| 10 |
# install sandbox |
10 |
make_lt_3_81 := $(shell expr "$(MAKE_VERx3)" "<" " 3 81") |
| 11 |
DESTDIR ?= |
11 |
ifneq ($(make_lt_3_81),0) |
| 12 |
@@ -54,7 +54,7 @@ |
12 |
@@ -117,7 +117,7 @@ |
| 13 |
*) echo so;; |
|
|
| 14 |
esac |
13 |
esac |
| 15 |
endef |
14 |
endef |
|
|
15 |
|
| 16 |
-SO_SUFFIX := $(shell $(uname2sosuffix)) |
16 |
-SO_SUFFIX := $(shell $(uname2sosuffix)) |
| 17 |
+SO_SUFFIX := so.0.11.2 |
17 |
+SO_SUFFIX := so.0.11.9 |
| 18 |
HEADERS := mdbx.h mdbx.h++ |
18 |
HEADERS := mdbx.h mdbx.h++ |
| 19 |
LIBRARIES := libmdbx.a libmdbx.$(SO_SUFFIX) |
19 |
LIBRARIES := libmdbx.a libmdbx.$(SO_SUFFIX) |
| 20 |
TOOLS := mdbx_stat mdbx_copy mdbx_dump mdbx_load mdbx_chk mdbx_drop |
20 |
TOOLS := mdbx_stat mdbx_copy mdbx_dump mdbx_load mdbx_chk mdbx_drop |
| 21 |
@@ -209,16 +209,11 @@ |
21 |
@@ -284,16 +284,11 @@ |
| 22 |
|
22 |
|
| 23 |
install: $(LIBRARIES) $(TOOLS) $(HEADERS) |
23 |
install: $(LIBRARIES) $(TOOLS) $(HEADERS) |
| 24 |
@echo ' INSTALLING...' |
24 |
@echo ' INSTALLING...' |