mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-09 02:52:04 +08:00
fc44d42c53
frontend->backend interface.
37 lines
1.1 KiB
Makefile
37 lines
1.1 KiB
Makefile
XSRCS = version.c
|
|
SRCS = idl.c add.c search.c cache.c dbcache.c dn2id.c id2entry.c \
|
|
index.c id2children.c nextid.c abandon.c compare.c group.c \
|
|
modify.c modrdn.c delete.c init.c config.c bind.c attr.c \
|
|
filterindex.c unbind.c kerberos.c close.c alias.c
|
|
OBJS = idl.o add.o search.o cache.o dbcache.o dn2id.o id2entry.o \
|
|
index.o id2children.o nextid.o abandon.o compare.o group.o \
|
|
modify.o modrdn.o delete.o init.o config.o bind.o attr.o \
|
|
filterindex.o unbind.o kerberos.o close.o alias.o
|
|
|
|
LDAP_INCDIR= ../../../include
|
|
LDAP_LIBDIR= ../../../libraries
|
|
|
|
BUILD_OPT = "--enable-ldbm"
|
|
BUILD_SRV = @BUILD_LDBM@
|
|
|
|
XINCPATH = -I.. -I$(srcdir)/..
|
|
|
|
PROGRAMS = libback-ldbm.a
|
|
|
|
all-local-srv: FORCE
|
|
$(MAKE) $(MFLAGS) libback-ldbm.a
|
|
|
|
libback-ldbm.a: version.o
|
|
$(AR) ruv $@ $(OBJS) version.o
|
|
@$(RANLIB) $@
|
|
@touch ../.backend
|
|
|
|
version.c: $(OBJS) $(LDAP_LIBDEPEND)
|
|
$(RM) $@
|
|
(u=$${USER-root} v=`$(CAT) $(VERSIONFILE)` d=`$(PWD)` \
|
|
h=`$(HOSTNAME)` t=`$(DATE)`; \
|
|
$(SED) -e "s|%WHEN%|$${t}|" \
|
|
-e "s|%WHOANDWHERE%|$${u}@$${h}:$${d}|" \
|
|
-e "s|%VERSION%|$${v}|" \
|
|
< $(srcdir)/Version.c > $@)
|