]> git.sur5r.net Git - openldap/blobdiff - build/lib-shared.mk
ITS#5409
[openldap] / build / lib-shared.mk
index b0778be22ddaf7baf6973440ef5f883ea139e78d..95d88528419210e4b8d6eaee1e44d003a98abdf4 100644 (file)
@@ -1,20 +1,30 @@
-##---------------------------------------------------------------------------
+# $OpenLDAP$
+## This work is part of OpenLDAP Software <http://www.openldap.org/>.
+##
+## Copyright 1998-2008 The OpenLDAP Foundation.
+## All rights reserved.
 ##
-## Makefile Template for Shared Libraries
+## Redistribution and use in source and binary forms, with or without
+## modification, are permitted only as authorized by the OpenLDAP
+## Public License.
 ##
+## A copy of this license is available in the file LICENSE in the
+## top-level directory of the distribution or, alternatively, at
+## <http://www.OpenLDAP.org/license.html>.
+##---------------------------------------------------------------------------
+#
+# Makefile Template for Shared Libraries
+#
 
-LINK    = $(LTLINK) -version-info $(LIBVERSION)
-COMPILE = $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) -c
 MKDEPFLAG = -l
 
 .SUFFIXES: .c .o .lo
 
 .c.lo:
-       $(COMPILE) $<
+       $(LTCOMPILE_LIB) $<
 
-$(LIBRARY):  version.lo
-       $(LINK) -rpath $(libdir) -o $@ $(OBJS) version.lo
-       @$(RM) ../$@;   \
-       (d=`$(PWD)` ; $(LN_S) `$(BASENAME) $$d`/$@ ../$@)
+$(LIBRARY): version.lo
+       $(LTLINK_LIB) -o $@ $(OBJS) version.lo $(LINK_LIBS)
 
 Makefile: $(top_srcdir)/build/lib-shared.mk
+