aboutsummaryrefslogtreecommitdiffstats
path: root/mk/macos.mk
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2024-10-19 18:21:54 +0200
committerMattias Andrée <m@maandree.se>2024-10-19 18:21:54 +0200
commit3ce34980d7ba2bddbf3e9a1bd6f98cbc855bddc2 (patch)
tree7724cc9cb9c3b2ce5ee60d2e012d1fbeb80aacfb /mk/macos.mk
downloadlibtellurian-3ce34980d7ba2bddbf3e9a1bd6f98cbc855bddc2.tar.gz
libtellurian-3ce34980d7ba2bddbf3e9a1bd6f98cbc855bddc2.tar.bz2
libtellurian-3ce34980d7ba2bddbf3e9a1bd6f98cbc855bddc2.tar.xz
First commit
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to '')
-rw-r--r--mk/macos.mk6
1 files changed, 6 insertions, 0 deletions
diff --git a/mk/macos.mk b/mk/macos.mk
new file mode 100644
index 0000000..72be640
--- /dev/null
+++ b/mk/macos.mk
@@ -0,0 +1,6 @@
+LIBEXT = dylib
+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/libtellurian.$(LIBMAJOREXT)"