aboutsummaryrefslogtreecommitdiffstats
path: root/mk/macos.mk
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2022-02-19 22:44:26 +0100
committerMattias Andrée <maandree@kth.se>2022-02-19 22:44:26 +0100
commit98754c3900671f88f30f40eacf9a576adb037fb6 (patch)
tree53314fa37366d6ff80c17a9cf0fdf1c4d2a33505 /mk/macos.mk
parentFix union of overlapping charset subset ranges (diff)
downloadlibfonts-98754c3900671f88f30f40eacf9a576adb037fb6.tar.gz
libfonts-98754c3900671f88f30f40eacf9a576adb037fb6.tar.bz2
libfonts-98754c3900671f88f30f40eacf9a576adb037fb6.tar.xz
Improve makefile
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-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..0138ee4 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/libfonts.$(LIBMAJOREXT)"