aboutsummaryrefslogtreecommitdiffstats
path: root/mk/macos.mk
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2022-02-19 21:34:29 +0100
committerMattias Andrée <maandree@kth.se>2022-02-19 21:34:29 +0100
commit313f261584bdbdf769d26bfb4d709ac2ff9bb2ba (patch)
tree8e185f479f427c03c2c119bed307937a131b15b8 /mk/macos.mk
parentImprove make file, fix tests, fix warnings, and add macro and pause key to interative test (diff)
downloadlibterminput-1.0.2.1.tar.gz
libterminput-1.0.2.1.tar.bz2
libterminput-1.0.2.1.tar.xz
Improve makefile1.0.2.1
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'mk/macos.mk')
-rw-r--r--mk/macos.mk4
1 files changed, 3 insertions, 1 deletions
diff --git a/mk/macos.mk b/mk/macos.mk
index bd92de6..e3cd1a6 100644
--- a/mk/macos.mk
+++ b/mk/macos.mk
@@ -1,4 +1,6 @@
LIBEXT = dylib
-LIBFLAGS = -dynamiclib
+LIBFLAGS = -dynamiclib -Wl,-compatibility_version,$(LIB_MAJOR) -Wl,-current_version,$(LIB_VERSION)
LIBMAJOREXT = $(LIB_MAJOR).$(LIBEXT)
LIBMINOREXT = $(LIB_VERSION).$(LIBEXT)
+
+FIX_INSTALL_NAME = install_name_tool -id "$(PREFIX)/lib/libterminput.$(LIBMAJOREXT)"