X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=libraries%2Fliblber%2FMakefile.in;h=b2485b7417935c502597a55de6a1f68b2f375a01;hb=d34fffcaf9edc00262209fbe6e04bb15805dbd37;hp=1a93680fb903da77e05e36a0ab89baa6af9b7a21;hpb=2a869f5a99f537b246ba8640502e2a86117cb6e8;p=openldap diff --git a/libraries/liblber/Makefile.in b/libraries/liblber/Makefile.in index 1a93680fb9..b2485b7417 100644 --- a/libraries/liblber/Makefile.in +++ b/libraries/liblber/Makefile.in @@ -1,18 +1,52 @@ +# LIBLBER +# $OpenLDAP$ +## This work is part of OpenLDAP Software . ## -## LIBLBER +## Copyright 1998-2005 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 +## . + +LIBRARY = liblber.la + +NT_SRCS = nt_err.c +NT_OBJS = nt_err.lo + +UNIX_SRCS = stdio.c +UNIX_OBJS = stdio.lo -SRCS = decode.c encode.c io.c bprint.c -OBJS = decode.o encode.o io.o bprint.o -XSRCS = version.c +LIB_DEFS = -DLBER_LIBRARY -LDAP_INCDIR= ../../include +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 + +PROGRAMS= dtest etest idtest + +LDAP_INCDIR= ../../include LDAP_LIBDIR= ../../libraries -LIBRARY = liblber.a +XLIBS = $(LIBRARY) $(LDAP_LIBLUTIL_A) +XXLIBS = +NT_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)) -