openldap/libraries/liblber/Makefile.in

53 lines
1.3 KiB
Makefile
Raw Normal View History

2003-11-26 10:58:56 +08:00
# LIBLBER
1999-09-09 06:52:19 +08:00
# $OpenLDAP$
2003-11-26 15:16:36 +08:00
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
2004-01-02 03:15:16 +08:00
## Copyright 1998-2004 The OpenLDAP Foundation.
2003-11-26 10:58:56 +08:00
## All rights reserved.
1998-10-25 09:41:42 +08:00
##
2003-11-26 10:58:56 +08: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-25 09:41:42 +08:00
##
2003-11-26 10:58:56 +08: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-25 09:41:42 +08:00
LIBRARY = liblber.la
NT_SRCS = nt_err.c
NT_OBJS = nt_err.lo
UNIX_SRCS = stdio.c
UNIX_OBJS = stdio.lo
2001-12-07 12:03:25 +08:00
LIB_DEFS = -DLBER_LIBRARY
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
1998-10-25 09:41:42 +08:00
PROGRAMS= dtest etest idtest
LDAP_INCDIR= ../../include
LDAP_LIBDIR= ../../libraries
2002-07-27 11:06:15 +08:00
XLIBS = $(LIBRARY) $(LDAP_LIBLUTIL_A)
XXLIBS =
2001-12-07 12:03:25 +08:00
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)
2003-10-01 10:26:41 +08:00
$(LTFINISH) $(DESTDIR)$(libdir)