X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=build%2Flib-shared.mk;h=3224867d4ce87c27f47d1c58c05b0500c5404f86;hb=052a4ae6c4059b5836b182380e895de0a8fc5ffb;hp=f978a52d568b1d19a2e456285dcd48f6b11e615f;hpb=e99eab787fd90696f1e668a5c1f1bd35f320acf1;p=openldap diff --git a/build/lib-shared.mk b/build/lib-shared.mk index f978a52d56..3224867d4c 100644 --- a/build/lib-shared.mk +++ b/build/lib-shared.mk @@ -1,49 +1,30 @@ # $OpenLDAP$ -## Copyright 1998,1999 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 . ## -## 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) $(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 +## . +##--------------------------------------------------------------------------- +# +# 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) -rpath $(libdir) -o $@ $(OBJS) version.lo $(EXTRA_LIBS) - $(RM) ../$@ - (d=`$(PWD)` ; $(LN_S) `$(BASENAME) $$d`/$@ ../$@) - $(RM) ../`$(BASENAME) $@ .la`.a; \ - (d=`$(PWD)`; t=`$(BASENAME) $@ .la`.a; $(LN_S) `$(BASENAME) $$d`/.libs/$$t ../$$t) - # If we want our binaries to link dynamically with libldap{,_r} liblber... - # We also symlink the .so.# so we can run the tests without installing - if test "$(LINK_BINS_DYNAMIC)" = "yes"; then \ - (d=`$(PWD)`; b=`$(BASENAME) $@ .la`; t=`ls $$d/.libs/$$b*.$(DYN_EXT)`; t=`$(BASENAME) $$t`; $(LN_S) `$(BASENAME) $$d`/.libs/$$t ../$$t); \ - if test "$(DYN_EXT)" != dll; then \ - (d=`$(PWD)`; b=`$(BASENAME) $@ .la`; t=`ls $$d/.libs/$$b.$(DYN_EXT).?`; $(LN_S) `$(BASENAME) $$d`/.libs/`$(BASENAME) $$t` ../`$(BASENAME) $$t`); \ - fi \ - fi +$(LIBRARY): version.lo + $(LTLINK_LIB) -o $@ $(OBJS) version.lo $(LINK_LIBS) Makefile: $(top_srcdir)/build/lib-shared.mk