1999-08-30 04:08:00 -04:00
|
|
|
# $OpenLDAP$
|
2005-01-21 14:38:13 -05:00
|
|
|
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
|
##
|
2024-03-26 15:45:07 -04:00
|
|
|
## Copyright 1998-2024 The OpenLDAP Foundation.
|
2003-11-25 21:58:56 -05:00
|
|
|
## All rights reserved.
|
1998-11-21 23:22:28 -05:00
|
|
|
##
|
2003-11-25 21:58:56 -05:00
|
|
|
## Redistribution and use in source and binary forms, with or without
|
|
|
|
|
## modification, are permitted only as authorized by the OpenLDAP
|
|
|
|
|
## Public License.
|
1998-11-21 23:22:28 -05:00
|
|
|
##
|
2003-11-25 21:58:56 -05:00
|
|
|
## 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
|
|
|
|
|
#
|
1998-11-21 23:22:28 -05:00
|
|
|
|
|
|
|
|
MKDEPFLAG = -l
|
|
|
|
|
|
|
|
|
|
.SUFFIXES: .c .o .lo
|
|
|
|
|
|
|
|
|
|
.c.lo:
|
2001-12-06 23:03:25 -05:00
|
|
|
$(LTCOMPILE_LIB) $<
|
|
|
|
|
|
|
|
|
|
$(LIBRARY): version.lo
|
|
|
|
|
$(LTLINK_LIB) -o $@ $(OBJS) version.lo $(LINK_LIBS)
|
1998-11-21 23:22:28 -05:00
|
|
|
|
|
|
|
|
Makefile: $(top_srcdir)/build/lib-shared.mk
|
1999-10-28 03:31:59 -04:00
|
|
|
|