mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-07 15:41:24 -05:00
make depend, make tests, and make install all work when build directory is not the $srcdir. Also modified library handling such that -lpthread more likely to be last. WARNING: new orderring requires use of LDFLAGS to set global loader options such as -L/usr/local/lib. If you put this in LIBS, some libraries may not be found a link time. Likely broke Kerberos/LDAPD support. Don't have those in my testbed.
31 lines
765 B
Makefile
31 lines
765 B
Makefile
## Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved.
|
|
## COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
##
|
|
## LIBLBER
|
|
##
|
|
|
|
LIBRARY = liblber.la
|
|
XLIBRARY = ../liblber.a
|
|
|
|
SRCS= decode.c encode.c io.c bprint.c options.c
|
|
OBJS= decode.lo encode.lo io.lo bprint.lo options.lo
|
|
XSRCS= version.c
|
|
|
|
PROGRAMS= dtest etest idtest
|
|
|
|
LDAP_INCDIR= ../../include
|
|
LDAP_LIBDIR= ../../libraries
|
|
|
|
XXLIBS = $(LDAP_LIBPATH) $(LDAP_LIBLBER)
|
|
|
|
dtest: $(LIBRARY) dtest.o
|
|
$(LTLINK) $(LDFLAGS) -o $@ dtest.o $(LIBS)
|
|
etest: $(LIBRARY) etest.o
|
|
$(LTLINK) $(LDFLAGS) -o $@ etest.o $(LIBS)
|
|
idtest: $(LIBRARY) idtest.o
|
|
$(LTLINK) $(LDFLAGS) -o $@ idtest.o $(LIBS)
|
|
|
|
install-local: FORCE
|
|
-$(MKDIR) $(libdir)
|
|
$(LTINSTALL) $(INSTALLFLAGS) -m 644 $(LIBRARY) $(libdir)
|
|
|