]> git.sur5r.net Git - openldap/blobdiff - build/lib-shared.mk
Regenerated with new OL_ARG_ENABLE
[openldap] / build / lib-shared.mk
index 20f4aa4b89792c001ba25d156035c53f7512ab0a..3224867d4ce87c27f47d1c58c05b0500c5404f86 100644 (file)
@@ -1,50 +1,30 @@
 # $OpenLDAP$
-## Copyright 1998-2000 The OpenLDAP Foundation
-## COPYING RESTRICTIONS APPLY.  See COPYRIGHT File in top level directory
-## of this package for details.
-##---------------------------------------------------------------------------
+## This work is part of OpenLDAP Software <http://www.openldap.org/>.
 ##
-## Makefile Template for Shared Libraries
+## Copyright 1998-2005 The OpenLDAP Foundation.
+## All rights reserved.
 ##
-
-NT_LTFLAGS = --only-$(LINKAGE)
-LTFLAGS = $(@PLAT@_LTFLAGS) 
-
-NT_DYN_LT_NO_UNDEF = -no-undefined
-LT_NO_UNDEF = $(@PLAT@_@LIB_LINKAGE@_LT_NO_UNDEF)
-
-COMPILE = $(LIBTOOL) $(LTFLAGS) --mode=compile $(CC) $(CFLAGS) $(EXTRA_DEFS) -c
-LTLIBLINK = $(LIBTOOL) $(LTFLAGS) --mode=link $(CC) -rpath $(libdir) \
-       $(CFLAGS) $(LDFLAGS) $(LTVERSION) $(LT_NO_UNDEF)
+## 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
+#
 
 MKDEPFLAG = -l
 
 .SUFFIXES: .c .o .lo
 
 .c.lo:
-       $(COMPILE) $<
-
-
-# DYN_EXT (@DYN_EXT@) describes the extension assoicated with a
-# dynamic library, e.g. so, dll
-
-DYN_EXT=@DYN_EXT@
+       $(LTCOMPILE_LIB) $<
 
-$(LIBRARY):  version.lo
-       $(LTLIBLINK) -o $@ $(OBJS) version.lo $(EXTRA_LIBS)
-       $(RM) ../$@
-       d=`$(PWD)`; d=`$(BASENAME) $$d`; cd ..; $(LN_S) $$d/$@ $@; \
-       t=`$(BASENAME) $@ .la`.a; $(RM) $$t; $(LN_S) $$d/.libs/$$t $$t
-       if test "$(LINK_BINS_DYNAMIC)" = "yes"; then \
-               d=`$(PWD)`; d=`$(BASENAME) $$d`; b=`$(BASENAME) $@ .la`; \
-                cd .libs; t=`echo $$b*.$(DYN_EXT)`; (cd ../.. ; $(RM) $$t; \
-                $(LN_S) $$d/.libs/$$t $$t); \
-               if test "$(DYN_EXT)" != dll; then \
-                   t=`echo $$b.$(DYN_EXT).?`; cd ../.. ; \
-                   $(RM) $$t; \
-                   $(LN_S) $$d/.libs/$$t $$t; \
-               fi \
-       fi
+$(LIBRARY): version.lo
+       $(LTLINK_LIB) -o $@ $(OBJS) version.lo $(LINK_LIBS)
 
 Makefile: $(top_srcdir)/build/lib-shared.mk