aboutsummaryrefslogtreecommitdiffstats
path: root/mk/macos.mk
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2022-02-19 21:05:57 +0100
committerMattias Andrée <maandree@kth.se>2022-02-19 21:05:57 +0100
commit1af6acb23d4b00f02a6b520562258e8bb7e38d2b (patch)
treea81ea358a4a58a4ab23fa33b5099c7451ed76a48 /mk/macos.mk
parentFix makefile, fix warnings, fix bugs, and otherwise improve code (diff)
downloadlibclut-1af6acb23d4b00f02a6b520562258e8bb7e38d2b.tar.gz
libclut-1af6acb23d4b00f02a6b520562258e8bb7e38d2b.tar.bz2
libclut-1af6acb23d4b00f02a6b520562258e8bb7e38d2b.tar.xz
Improve makefile
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r--mk/macos.mk7
1 files changed, 7 insertions, 0 deletions
diff --git a/mk/macos.mk b/mk/macos.mk
new file mode 100644
index 0000000..c5636bf
--- /dev/null
+++ b/mk/macos.mk
@@ -0,0 +1,7 @@
+LIBEXT = dylib
+LIBFLAGS = -dynamiclib -Wl,-compatibility_version,$(LIB_MAJOR) -Wl,-current_version,$(LIB_VERSION)
+
+LIBMAJOREXT = $(LIB_MAJOR).$(LIBEXT)
+LIBMINOREXT = $(LIB_MAJOR).$(LIB_MINOR).$(LIBEXT)
+
+FIX_INSTALL_NAME = install_name_tool -id "$(PREFIX)/lib/libclut.$(LIBMAJOREXT)"