2003-11-25 21:58:56 -05:00
|
|
|
# LIBLBER
|
1999-09-08 18:52:19 -04:00
|
|
|
# $OpenLDAP$
|
2003-11-26 02:16:36 -05:00
|
|
|
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
|
##
|
2009-01-21 19:40:04 -05:00
|
|
|
## Copyright 1998-2009 The OpenLDAP Foundation.
|
2003-11-25 21:58:56 -05:00
|
|
|
## All rights reserved.
|
1998-10-24 21:41:42 -04: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-10-24 21:41:42 -04: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>.
|
1998-10-24 21:41:42 -04:00
|
|
|
|
1998-11-21 23:22:28 -05:00
|
|
|
LIBRARY = liblber.la
|
|
|
|
|
|
2000-05-12 17:16:15 -04:00
|
|
|
NT_SRCS = nt_err.c
|
|
|
|
|
NT_OBJS = nt_err.lo
|
|
|
|
|
|
2002-09-09 20:47:32 -04:00
|
|
|
UNIX_SRCS = stdio.c
|
|
|
|
|
UNIX_OBJS = stdio.lo
|
|
|
|
|
|
2001-12-06 23:03:25 -05:00
|
|
|
LIB_DEFS = -DLBER_LIBRARY
|
|
|
|
|
|
2002-07-11 16:33:24 -04:00
|
|
|
SRCS= assert.c decode.c encode.c io.c bprint.c debug.c \
|
2000-05-12 17:16:15 -04:00
|
|
|
memory.c options.c sockbuf.c $(@PLAT@_SRCS)
|
2002-11-26 15:18:03 -05:00
|
|
|
OBJS= assert.lo decode.lo encode.lo io.lo bprint.lo debug.lo \
|
2000-05-12 17:16:15 -04:00
|
|
|
memory.lo options.lo sockbuf.lo $(@PLAT@_OBJS)
|
1998-11-21 23:22:28 -05:00
|
|
|
XSRCS= version.c
|
1998-10-24 21:41:42 -04:00
|
|
|
|
1998-11-21 15:39:24 -05:00
|
|
|
PROGRAMS= dtest etest idtest
|
|
|
|
|
|
2002-07-11 16:33:24 -04:00
|
|
|
LDAP_INCDIR= ../../include
|
|
|
|
|
LDAP_LIBDIR= ../../libraries
|
1998-11-21 23:22:28 -05:00
|
|
|
|
2002-07-26 23:06:15 -04:00
|
|
|
XLIBS = $(LIBRARY) $(LDAP_LIBLUTIL_A)
|
1999-01-13 20:31:43 -05:00
|
|
|
XXLIBS =
|
2001-12-06 23:03:25 -05:00
|
|
|
NT_LINK_LIBS = $(AC_LIBS)
|
2007-11-12 02:59:54 -05:00
|
|
|
UNIX_LINK_LIBS = $(AC_LIBS)
|
1999-10-28 03:31:59 -04:00
|
|
|
|
2002-02-10 17:42:51 -05:00
|
|
|
dtest: $(XLIBS) dtest.o
|
2000-10-01 04:10:37 -04:00
|
|
|
$(LTLINK) -o $@ dtest.o $(LIBS)
|
2002-02-10 17:42:51 -05:00
|
|
|
etest: $(XLIBS) etest.o
|
2000-10-01 04:10:37 -04:00
|
|
|
$(LTLINK) -o $@ etest.o $(LIBS)
|
2002-02-10 17:42:51 -05:00
|
|
|
idtest: $(XLIBS) idtest.o
|
2000-10-01 04:10:37 -04:00
|
|
|
$(LTLINK) -o $@ idtest.o $(LIBS)
|
1998-11-21 15:39:24 -05:00
|
|
|
|
1998-11-21 23:22:28 -05:00
|
|
|
install-local: FORCE
|
1999-09-22 17:51:30 -04:00
|
|
|
-$(MKDIR) $(DESTDIR)$(libdir)
|
|
|
|
|
$(LTINSTALL) $(INSTALLFLAGS) -m 644 $(LIBRARY) $(DESTDIR)$(libdir)
|
2003-09-30 22:26:41 -04:00
|
|
|
$(LTFINISH) $(DESTDIR)$(libdir)
|
1998-11-21 23:22:28 -05:00
|
|
|
|