diff options
Diffstat (limited to 'mk')
-rw-r--r-- | mk/linux.mk | 3 | ||||
-rw-r--r-- | mk/macos.mk | 3 | ||||
-rw-r--r-- | mk/windows.mk | 3 |
3 files changed, 9 insertions, 0 deletions
diff --git a/mk/linux.mk b/mk/linux.mk new file mode 100644 index 0000000..9de2d8d --- /dev/null +++ b/mk/linux.mk @@ -0,0 +1,3 @@ +LIBEXT = so +OS_CFLAGS = -fPIC +OS_LDFLAGS = -shared -Wl,-soname,libgamma-java.so.$(LIB_MAJOR) diff --git a/mk/macos.mk b/mk/macos.mk new file mode 100644 index 0000000..aa8b17b --- /dev/null +++ b/mk/macos.mk @@ -0,0 +1,3 @@ +LIBEXT = dylib +OS_CFLAGS = -fPIC +OS_LDFLAGS = -dynamiclib diff --git a/mk/windows.mk b/mk/windows.mk new file mode 100644 index 0000000..5f83afc --- /dev/null +++ b/mk/windows.mk @@ -0,0 +1,3 @@ +LIBEXT = dll +OS_CFLAGS = +OS_LDFLAGS = -mdll -Wl,-soname,libgamma-java.dll.$(LIB_MAJOR) |