1 #-----------------------------------------------------------------------------
2 # Copyright (c) 1995 Regents of the University of Michigan.
5 # Redistribution and use in source and binary forms are permitted
6 # provided that this notice is preserved and that due credit is given
7 # to the University of Michigan at Ann Arbor. The name of the University
8 # may not be used to endorse or promote products derived from this
9 # software without specific prior written permission. This software
10 # is provided ``as is'' without express or implied warranty.
12 # Stand alone LDAP server tools makefile
14 #-----------------------------------------------------------------------------
15 HAVE_ISODE = @HAVE_ISODE@
16 BUILD_LDBM = @BUILD_LDBM@
18 LDAP_INCDIR= ../../../include
19 LDAP_LIBDIR= ../../../libraries
21 PROGRAMS=ldif2index ldif2ldbm ldbmcat ldif2id2entry \
22 ldif2id2children centipede ldbmtest ldif
24 SRCS = centipede.c ldbmcat.c ldbmtest.c sizecount.c \
25 ldif.c ldif2id2children.c ldif2id2entry.c ldif2index.c ldif2ldbm.c
29 EDB2LDIFSRCS = edb2ldif.c ldapsyntax.c
30 EDB2LDIFOBJS = edb2ldif.o ldapsyntax.o
32 OBJS2 = ../config.o ../ch_malloc.o ../backend.o ../charray.o \
33 ../aclparse.o ../schema.o ../result.o ../filterentry.o \
34 ../acl.o ../phonetic.o ../attr.o ../value.o ../entry.o \
35 ../dn.o ../filter.o ../str2filter.o ../ava.o ../init.o \
38 all-local: build-ldbm build-edb2ldif build-chlog2replog
41 @if [ "$(BUILD_LDBM)" = "yes" ]; then \
42 $(MAKE) $(MFLAGS) ldbm-tools; \
44 echo "run configure with --with-ldbm to build LDBM tools"; \
47 ldbm-tools: $(PROGRAMS)
49 XLIBS = @SLAPD_LIBS@ -lavl -lldbm @LDBM_LIBS@ -llthread @LTHREAD_LIBS@ -llutil @LUTIL_LIBS@
52 @if [ "$(HAVE_ISODE)" = "yes" ]; then \
53 $(MAKE) $(MFLAGS) edb2ldif; \
55 echo "run configure with --with-isode to build edb2ldif"; \
59 $(CC) $(LDFLAGS) -o $@ $(EDB2LDIFOBJS) edb2-vers.o $(LIBS)
61 edb2-vers.c: $(EDB2LDIFOBJS)
63 (u=$${USER-root} v=`$(CAT) $(VERSIONFILE)` d=`$(PWD)` h=`$(HOSTNAME)` \
64 t=`$(DATE)`; $(SED) -e "s|%WHEN%|$${t}|" \
65 -e "s|%WHOANDWHERE%|$${u}@$${h}:$${d}|" \
66 -e "s|%VERSION%|$${v}|" \
69 build-chlog2replog: FORCE
70 @if [ "$(HAVE_ISODE)" = "yes" ]; then \
71 $(MAKE) $(MFLAGS) chlog2replog; \
73 echo "run configure with --with-isode to build chlog2replog"; \
76 chlog2replog: chlog2replog.o ../lock.o ../ch_malloc.o
77 $(LTLINK) -o $@ chlog2replog.o ../lock.o ../ch_malloc.o $(LIBS)
79 ldif2index: ldif2index.o ../libbackends.a $(OBJS2)
80 $(LTLINK) -o $@ ldif2index.o $(OBJS2) ../libbackends.a $(LIBS)
82 ldif2ldbm: ldif2ldbm.o ../libbackends.a $(OBJS2)
83 $(LTLINK) -o $@ ldif2ldbm.o $(OBJS2) ../libbackends.a $(LIBS)
85 ldif2id2entry: ldif2id2entry.o ../libbackends.a $(OBJS2)
86 $(LTLINK) -o $@ ldif2id2entry.o $(OBJS2) ../libbackends.a $(LIBS)
88 ldif2id2children: ldif2id2children.o ../libbackends.a $(OBJS2)
89 $(LTLINK) -o $@ ldif2id2children.o $(OBJS2) ../libbackends.a $(LIBS)
92 $(LTLINK) -o $@ ldbmcat.o $(LIBS)
95 $(LTLINK) -o $@ ldif.o $(LIBS) $(LIBS2)
97 centipede: centipede.o
98 $(LTLINK) -o $@ centipede.o $(LIBS) $(KRBLIBFLAG) $(KRBLIBS)
100 sizecount: sizecount.o ../phonetic.o ../ch_malloc.o
101 $(LTLINK) -o $@ sizecount.o ../phonetic.o ../ch_malloc.o \
102 $(LIBS) $(KRBLIBFLAG) $(KRBLIBS)
104 ldbmtest: ldbmtest.o ../libbackends.a $(OBJS2)
105 $(LTLINK) -o ldbmtest ldbmtest.o $(OBJS2) ../libbackends.a $(LIBS)
108 $(RM) $(PROGRAMS) $(XPROGRAMS) $(XSRCS) edb2-vers.c \
112 @DEPEND=no ; DEPEND_LDBM= ; DEPEND_ISODE= ; \
113 if [ "$(BUILD_LDBM)" = "yes" ]; then \
114 DEPEND_LDBM="$(SRCS)"; \
117 if [ "$(HAVE_ISODE)" = "yes" ]; then \
118 DEPEND_ISODE="$(ISODEINCLUDEFLAG) chlog2replog.c $(EDB2LDIFSRCS)"; \
121 if [ "$$DEPEND" = "yes" ]; then \
122 $(MKDEP) $(DEFS) $(DEFINES) $$DEPEND_ISODE $$DEPEND_LDBM; \
127 install-local: install-ldbm install-isode FORCE
130 @-$(MKDIR) -p $(sbindir)
131 @if [ "$(BUILD_LDBM)" = "yes" ]; then \
132 $(LTINSTALL) $(INSTALLFLAGS) -m 755 ldif2ldbm $(sbindir) ; \
133 $(LTINSTALL) $(INSTALLFLAGS) -m 755 ldif2index $(sbindir) ; \
134 $(LTINSTALL) $(INSTALLFLAGS) -m 755 ldif2id2entry $(sbindir) ; \
135 $(LTINSTALL) $(INSTALLFLAGS) -m 755 ldif2id2children $(sbindir) ; \
136 $(LTINSTALL) $(INSTALLFLAGS) -m 755 ldbmcat $(sbindir) ; \
137 $(LTINSTALL) $(INSTALLFLAGS) -m 755 ldif $(sbindir) ; \
138 $(LTINSTALL) $(INSTALLFLAGS) -m 755 centipede $(sbindir) ; \
139 $(LTINSTALL) $(INSTALLFLAGS) -m 755 ldbmtest $(sbindir) ; \
145 @-$(MKDIR) -p $(sbindir)
146 @if [ "$(HAVE_ISODE)" = "yes" ]; then \
147 $(LTINSTALL) $(INSTALLFLAGS) -m 755 edb2ldif $(sbindir); \
148 $(LTINSTALL) $(INSTALLFLAGS) -m 755 chlog2replog $(sbindir); \