mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-29 11:09:34 -05:00
default sysconfdir subdirectory is openldap instead of ldap.
This removes conflicts with other ldap subsystems. Should
be configure option.
*.conf files are now preserved. A *.conf.default are always
created with the latest conf.
*.help and ldapfriendly are now placed in $(datadir)/$(ldap_subdir)
updated man pages to reflect changes.
28 lines
610 B
Makefile
28 lines
610 B
Makefile
##
|
|
## LIBLBER
|
|
##
|
|
|
|
LIBRARY = liblber.la
|
|
|
|
SRCS= decode.c encode.c io.c bprint.c
|
|
OBJS= decode.lo encode.lo io.lo bprint.lo
|
|
XSRCS= version.c
|
|
|
|
PROGRAMS= dtest etest idtest
|
|
|
|
LDAP_INCDIR= ../../include
|
|
LDAP_LIBDIR= ../../libraries
|
|
|
|
LIBS = $(LDAP_LIBPATH) $(LDAP_LIBLBER) $(AC_LIBS)
|
|
|
|
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)
|
|
|