mirror of
https://git.freebsd.org/ports.git
synced 2025-04-29 01:56:37 -04:00
21 lines
472 B
Text
21 lines
472 B
Text
--- Makefile.orig 2006-04-18 00:32:27 UTC
|
|
+++ Makefile
|
|
@@ -1,9 +1,6 @@
|
|
# Makefile for libaura.
|
|
# $Id: Makefile,v 1.20 2005/08/26 22:44:37 cpressey Exp $
|
|
|
|
-BASE?=../..
|
|
-include ${BASE}/Config
|
|
-
|
|
LIB= aura
|
|
LIB_VER=3
|
|
|
|
@@ -17,7 +14,7 @@ ${SONAME}: ${OBJS}
|
|
all: ${SONAME} ${ANAME}
|
|
|
|
${SONAME}: ${OBJS}
|
|
- ${CC} ${OBJS} -shared ${LDFLAGS} -o ${SONAME}
|
|
+ ${CC} ${OBJS} -shared ${LDFLAGS} -Wl,-soname,${SONAME} -o ${SONAME}
|
|
ln -sf ${SONAME} ${SOLINK}
|
|
|
|
${ANAME}: ${OBJS}
|