]> git.sur5r.net Git - openldap/blobdiff - libraries/liblber/Makefile.in
Merge remote branch 'origin/mdb.master' into OPENLDAP_REL_ENG_2_4
[openldap] / libraries / liblber / Makefile.in
index 05a4587aabe87f2299f88d295343529ef0aeebca..d09282b164256566ae39aec619c3e4ba61288a1c 100644 (file)
@@ -1,27 +1,53 @@
+# LIBLBER
+# $OpenLDAP$
+## This work is part of OpenLDAP Software <http://www.openldap.org/>.
 ##
-## LIBLBER
+## Copyright 1998-2012 The OpenLDAP Foundation.
+## All rights reserved.
 ##
+## 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>.
 
-SRCS = decode.c encode.c io.c bprint.c
-OBJS = decode.o encode.o io.o bprint.o
-XSRCS = version.c
+LIBRARY = liblber.la
 
-PROGRAMS= dtest etest idtest
+NT_SRCS = nt_err.c
+NT_OBJS = nt_err.lo
+
+UNIX_SRCS = stdio.c
+UNIX_OBJS = stdio.lo
+
+LIB_DEFS = -DLBER_LIBRARY
 
-dtest:    $(LIBRARY) dtest.o
-       $(CC) $(LDFLAGS) -o $@ dtest.o $(LIBS)
-etest:  $(LIBRARY) etest.o
-       $(CC) $(LDFLAGS) -o $@ etest.o $(LIBS)
-idtest:  $(LIBRARY) idtest.o
-       $(CC) $(LDFLAGS) -o $@ idtest.o $(LIBS)
+SRCS= assert.c decode.c encode.c io.c bprint.c debug.c \
+       memory.c options.c sockbuf.c $(@PLAT@_SRCS)
+OBJS= assert.lo decode.lo encode.lo io.lo bprint.lo debug.lo \
+       memory.lo options.lo sockbuf.lo $(@PLAT@_OBJS)
+XSRCS= version.c
 
-LDAP_INCDIR= ../../include       
+PROGRAMS= dtest etest idtest
+
+LDAP_INCDIR= ../../include
 LDAP_LIBDIR= ../../libraries
 
-LIBRARY = liblber.a
+XLIBS = $(LIBRARY) $(LDAP_LIBLUTIL_A)
+XXLIBS = 
+NT_LINK_LIBS = $(AC_LIBS)
+UNIX_LINK_LIBS = $(AC_LIBS)
+
+dtest:    $(XLIBS) dtest.o
+       $(LTLINK) -o $@ dtest.o $(LIBS)
+etest:  $(XLIBS) etest.o
+       $(LTLINK) -o $@ etest.o $(LIBS)
+idtest:  $(XLIBS) idtest.o
+       $(LTLINK) -o $@ idtest.o $(LIBS)
+
+install-local: FORCE
+       -$(MKDIR) $(DESTDIR)$(libdir)
+       $(LTINSTALL) $(INSTALLFLAGS) -m 644 $(LIBRARY) $(DESTDIR)$(libdir)
+       $(LTFINISH) $(DESTDIR)$(libdir)
 
-install-local: $(LIBRARY) FORCE
-       -$(MKDIR) -p $(libdir)
-       $(INSTALL) $(INSTALLFLAGS) -m 644 $(LIBRARY) $(libdir)
-       @(cd /tmp; $(RANLIB) $(libdir)/$(LIBRARY))
-