diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-11-13 23:56:52 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-11-13 23:56:52 +0100 |
commit | 1a01faf9a000afd20d1e0b4ad11d8aaea366580f (patch) | |
tree | 59300697e43b92dc9ca3eb6d73bf06b25e8e569b | |
parent | m + compile static lib (diff) | |
download | libpassphrase-1415919473.tar.gz libpassphrase-1415919473.tar.bz2 libpassphrase-1415919473.tar.xz |
link .so file with -Wl,-soname,libpassphrase.so1415919473
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -99,7 +99,7 @@ test: bin/test bin/libpassphrase.so: obj/passphrase.o @mkdir -p bin - $(CC) $(LD_FLAGS) -shared -o "$@" $^ $(LDFLAGS) + $(CC) $(LD_FLAGS) -shared -Wl,-soname,libpassphrase.so -o "$@" $^ $(LDFLAGS) bin/libpassphrase.a: obj/passphrase.o @mkdir -p bin |