diff options
author | Mattias Andrée <maandree@kth.se> | 2022-07-19 13:47:08 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2022-07-19 13:47:08 +0200 |
commit | 3dd9089913623ccfa54ec7a2b5e876d17316c838 (patch) | |
tree | f39a4ead77a213f9904b4e21ff3aac1445b16612 /mk/macos.mk | |
parent | Move some test code to newline created .c files (diff) | |
download | libsimple-3dd9089913623ccfa54ec7a2b5e876d17316c838.tar.gz libsimple-3dd9089913623ccfa54ec7a2b5e876d17316c838.tar.bz2 libsimple-3dd9089913623ccfa54ec7a2b5e876d17316c838.tar.xz |
Improve makefile and fix a bug
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'mk/macos.mk')
-rw-r--r-- | mk/macos.mk | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mk/macos.mk b/mk/macos.mk new file mode 100644 index 0000000..00e8236 --- /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/lib$(LIB_NAME).$(LIBMAJOREXT)" |