aboutsummaryrefslogtreecommitdiffstats
path: root/mk/macos.mk
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2022-02-19 22:09:49 +0100
committerMattias Andrée <maandree@kth.se>2022-02-19 22:09:49 +0100
commitc18cacf683d1b5ae6256d71fb5076cae02fa9daf (patch)
tree02cee1c9472d9131a52a8a0705da97c74ca4a008 /mk/macos.mk
parentFirst commit (diff)
downloadlibparsepsf-c18cacf683d1b5ae6256d71fb5076cae02fa9daf.tar.gz
libparsepsf-c18cacf683d1b5ae6256d71fb5076cae02fa9daf.tar.bz2
libparsepsf-c18cacf683d1b5ae6256d71fb5076cae02fa9daf.tar.xz
Improve makefile
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'mk/macos.mk')
-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..18d9433
--- /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/libparsepsf.$(LIBMAJOREXT)"