1999-09-08 18:52:19 -04:00
|
|
|
# $OpenLDAP$
|
2002-01-04 16:17:25 -05:00
|
|
|
## Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
|
2000-05-12 22:47:56 -04:00
|
|
|
## COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
1998-10-24 21:41:42 -04:00
|
|
|
#-----------------------------------------------------------------------------
|
2000-05-12 22:47:56 -04:00
|
|
|
# Portions Copyright (c) 1995 Regents of the University of Michigan.
|
1998-10-24 21:41:42 -04:00
|
|
|
# All rights reserved.
|
|
|
|
|
#
|
|
|
|
|
# Redistribution and use in source and binary forms are permitted
|
|
|
|
|
# provided that this notice is preserved and that due credit is given
|
|
|
|
|
# to the University of Michigan at Ann Arbor. The name of the University
|
|
|
|
|
# may not be used to endorse or promote products derived from this
|
|
|
|
|
# software without specific prior written permission. This software
|
|
|
|
|
# is provided ``as is'' without express or implied warranty.
|
|
|
|
|
#
|
|
|
|
|
# Stand alone LDAP server tools makefile
|
|
|
|
|
#
|
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
LDAP_INCDIR= ../../../include
|
|
|
|
|
LDAP_LIBDIR= ../../../libraries
|
|
|
|
|
|
1999-08-07 03:58:11 -04:00
|
|
|
SLAP_DIR=../
|
1999-06-24 13:06:34 -04:00
|
|
|
XDEFS = $(MODULES_CPPFLAGS)
|
2002-05-17 23:52:46 -04:00
|
|
|
XLDFLAGS = $(MODULES_LDFLAGS)
|
1999-06-24 13:06:34 -04:00
|
|
|
|
2002-02-10 17:42:51 -05:00
|
|
|
XLIBS = $(SLAPD_L) $(LDBM_LIBS)
|
2000-06-25 17:40:13 -04:00
|
|
|
XXLIBS = $(SLAPD_LIBS) \
|
2000-05-10 17:18:12 -04:00
|
|
|
$(LDBM_LIBS) $(SECURITY_LIBS) \
|
1999-07-30 23:23:26 -04:00
|
|
|
$(LDIF_LIBS) $(LUTIL_LIBS)
|
2000-06-25 18:01:42 -04:00
|
|
|
XXXLIBS = $(MODULES_LIBS) $(LTHREAD_LIBS)
|
1999-01-09 21:25:41 -05:00
|
|
|
|
2002-09-04 06:58:25 -04:00
|
|
|
STATIC_DEPENDS=@SLAPD_NO_STATIC@ ../libbackends.a
|
|
|
|
|
|
2000-06-25 18:01:42 -04:00
|
|
|
PROGRAMS=slapadd slapcat slapindex slappasswd
|
1999-02-08 06:42:14 -05:00
|
|
|
|
2000-06-25 18:01:42 -04:00
|
|
|
SRCS = mimic.c slapcommon.c \
|
|
|
|
|
slapadd.c slapcat.c slapindex.c slappasswd.c
|
1999-08-17 15:00:59 -04:00
|
|
|
|
2002-08-25 12:53:20 -04:00
|
|
|
SLAPD_OBJS = ../config.o ../ch_malloc.o ../backend.o \
|
2001-12-06 23:03:25 -05:00
|
|
|
../module.o ../aclparse.o ../filterentry.o ../schema.o \
|
|
|
|
|
../schema_check.o ../schema_init.o ../schema_prep.o \
|
|
|
|
|
../schemaparse.o ../ad.o ../at.o ../mr.o ../oc.o \
|
|
|
|
|
../syntax.o ../acl.o ../phonetic.o ../attr.o ../value.o \
|
|
|
|
|
../entry.o ../dn.o ../filter.o ../str2filter.o ../ava.o \
|
|
|
|
|
../init.o ../controls.o ../kerberos.o ../passwd.o \
|
|
|
|
|
../index.o ../extended.o ../starttls.o ../sets.o ../mra.o \
|
2002-01-19 14:58:47 -05:00
|
|
|
../referral.o ../backglue.o ../oidm.o ../mods.o
|
1999-12-07 23:37:59 -05:00
|
|
|
|
1999-12-15 21:18:50 -05:00
|
|
|
SLAPOBJS = $(SLAPD_OBJS) slapcommon.o mimic.o
|
1998-10-24 21:41:42 -04:00
|
|
|
|
2000-06-25 18:01:42 -04:00
|
|
|
all-local: build-progs
|
1999-08-17 15:00:59 -04:00
|
|
|
|
|
|
|
|
build-progs: $(PROGRAMS)
|
1998-10-24 21:41:42 -04:00
|
|
|
|
1999-08-17 15:00:59 -04:00
|
|
|
#
|
|
|
|
|
# SLAP Tools
|
|
|
|
|
#
|
2002-09-04 06:58:25 -04:00
|
|
|
slapadd: slapadd.o $(STATIC_DEPENDS) $(SLAPOBJS) $(SLAPD_L)
|
|
|
|
|
$(LTLINK) -o $@ slapadd.o $(SLAPOBJS) $(STATIC_DEPENDS) $(LIBS)
|
1998-10-24 21:41:42 -04:00
|
|
|
|
2002-09-04 06:58:25 -04:00
|
|
|
slapcat: slapcat.o $(STATIC_DEPENDS) $(SLAPOBJS) $(SLAPD_L)
|
|
|
|
|
$(LTLINK) -o $@ slapcat.o $(SLAPOBJS) $(STATIC_DEPENDS) $(LIBS)
|
1999-02-08 06:42:14 -05:00
|
|
|
|
2002-09-04 06:58:25 -04:00
|
|
|
slapindex: slapindex.o $(STATIC_DEPENDS) $(SLAPOBJS) $(SLAPD_L)
|
|
|
|
|
$(LTLINK) -o $@ slapindex.o $(SLAPOBJS) $(STATIC_DEPENDS) $(LIBS)
|
1998-10-24 21:41:42 -04:00
|
|
|
|
2002-02-10 17:42:51 -05:00
|
|
|
slappasswd: slappasswd.o $(SLAPD_L)
|
1999-12-15 21:18:50 -05:00
|
|
|
$(LTLINK) -o $@ slappasswd.o $(LIBS)
|
|
|
|
|
|
1998-10-24 21:41:42 -04:00
|
|
|
clean-local: FORCE
|
2000-06-25 18:01:42 -04:00
|
|
|
$(RM) $(PROGRAMS) $(XPROGRAMS) $(XSRCS) *.o core .libs/* *.exe
|
1998-10-24 21:41:42 -04:00
|
|
|
|
|
|
|
|
depend-local: FORCE
|
2000-06-25 18:01:42 -04:00
|
|
|
$(MKDEP) $(DEFS) $(DEFINES) $(SRCS)
|
2000-07-12 15:59:58 -04:00
|
|
|
|
2002-02-25 11:57:29 -05:00
|
|
|
install-local: FORCE
|
2000-07-12 15:59:58 -04:00
|
|
|
-$(MKDIR) $(DESTDIR)$(sbindir)
|
|
|
|
|
@for bin in $(PROGRAMS); do \
|
|
|
|
|
$(LTINSTALL) $(INSTALLFLAGS) -s -m 755 \
|
|
|
|
|
$$bin$(EXEEXT) $(DESTDIR)$(sbindir); \
|
|
|
|
|
done
|
|
|
|
|
|