mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
8153a4039b
support for TLS and SASL will be build. Please inform me of any problems.
33 lines
770 B
Makefile
33 lines
770 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 sockbuf.c
|
|
OBJS= decode.lo encode.lo io.lo bprint.lo options.lo sockbuf.lo
|
|
XSRCS= version.c
|
|
|
|
PROGRAMS= dtest etest idtest
|
|
|
|
LDAP_INCDIR= ../../include
|
|
LDAP_LIBDIR= ../../libraries
|
|
|
|
XLIBS = -llber
|
|
XXLIBS =
|
|
|
|
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)
|
|
|