aboutsummaryrefslogtreecommitdiffstats
path: root/mk/macos.mk
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2022-02-19 22:54:27 +0100
committerMattias Andrée <maandree@kth.se>2022-02-19 22:54:27 +0100
commit00c76ec9332555992f3ff181c985b526eece0637 (patch)
treea3710191c276eb525a0c4570810f180fceddbb41 /mk/macos.mk
parentm print-syntax.c (diff)
downloadlibparser-00c76ec9332555992f3ff181c985b526eece0637.tar.gz
libparser-00c76ec9332555992f3ff181c985b526eece0637.tar.bz2
libparser-00c76ec9332555992f3ff181c985b526eece0637.tar.xz
Update makefile
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..1217a0b 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/libparser.$(LIBMAJOREXT)"