diff options
author | Mattias Andrée <maandree@kth.se> | 2021-04-08 16:56:42 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-04-08 16:56:42 +0200 |
commit | b2da2d6f15e28b755f22bb5557e8c79b3abacd7e (patch) | |
tree | 05ad6f7e0b54a6864a5372353ce9da4ed89ea33e /mk | |
parent | libcontacts_save_contact: create directory if missing (diff) | |
download | libcontacts-b2da2d6f15e28b755f22bb5557e8c79b3abacd7e.tar.gz libcontacts-b2da2d6f15e28b755f22bb5557e8c79b3abacd7e.tar.bz2 libcontacts-b2da2d6f15e28b755f22bb5557e8c79b3abacd7e.tar.xz |
Add build of dynamically linked library
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'mk')
-rw-r--r-- | mk/linux.mk | 4 | ||||
-rw-r--r-- | mk/macos.mk | 4 | ||||
-rw-r--r-- | mk/windows.mk | 4 |
3 files changed, 12 insertions, 0 deletions
diff --git a/mk/linux.mk b/mk/linux.mk new file mode 100644 index 0000000..e248fc9 --- /dev/null +++ b/mk/linux.mk @@ -0,0 +1,4 @@ +LIBEXT = so +LIBFLAGS = -shared -Wl,-soname,libcontacts.$(LIBEXT).$(LIB_MAJOR) +LIBMAJOREXT = $(LIBEXT).$(LIB_MAJOR) +LIBMINOREXT = $(LIBEXT).$(LIB_VERSION) diff --git a/mk/macos.mk b/mk/macos.mk new file mode 100644 index 0000000..bd92de6 --- /dev/null +++ b/mk/macos.mk @@ -0,0 +1,4 @@ +LIBEXT = dylib +LIBFLAGS = -dynamiclib +LIBMAJOREXT = $(LIB_MAJOR).$(LIBEXT) +LIBMINOREXT = $(LIB_VERSION).$(LIBEXT) diff --git a/mk/windows.mk b/mk/windows.mk new file mode 100644 index 0000000..e9602e1 --- /dev/null +++ b/mk/windows.mk @@ -0,0 +1,4 @@ +LIBEXT = dll +LIBFLAGS = -mdll +LIBMAJOREXT = $(LIB_MAJOR).$(LIBEXT) +LIBMINOREXT = $(LIB_VERSION).$(LIBEXT) |