]> git.sur5r.net Git - openldap/blob - servers/slapd/tools/Makefile.in
f4725a0dfb5133b6efe37fb51ed633fdd89cc5f1
[openldap] / servers / slapd / tools / Makefile.in
1 #-----------------------------------------------------------------------------
2 # Copyright (c) 1995 Regents of the University of Michigan.
3 # All rights reserved.
4 #
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.
11 #
12 #       Stand alone LDAP server tools makefile
13 #
14 #-----------------------------------------------------------------------------
15 HAVE_ISODE = @HAVE_ISODE@
16 BUILD_LDBM = @BUILD_LDBM@
17
18 LDAP_INCDIR= ../../../include       
19 LDAP_LIBDIR= ../../../libraries
20
21 XLIBS = $(LDAP_LIBS) $(SLAPD_LIBS) -lavl $(LDAP_LIBLDBM)
22 XXLIBS = $(KRB_LIBS) $(LDAP_LIBLTHREAD)
23
24 PROGRAMS=ldif2index ldif2ldbm ldbmcat ldif2id2entry \
25         ldif2id2children centipede ldbmtest ldif
26
27 SRCS = centipede.c ldbmcat.c ldbmtest.c sizecount.c \
28         ldif.c ldif2id2children.c ldif2id2entry.c ldif2index.c ldif2ldbm.c
29
30 XSRCS = edb2-vers.c
31
32 EDB2LDIFSRCS    = edb2ldif.c ldapsyntax.c
33 EDB2LDIFOBJS    = edb2ldif.o ldapsyntax.o
34
35 OBJS2   = ../config.o ../ch_malloc.o ../backend.o ../charray.o \
36                 ../aclparse.o ../schema.o ../result.o ../filterentry.o \
37                 ../acl.o ../phonetic.o ../attr.o ../value.o ../entry.o \
38                 ../dn.o ../filter.o ../str2filter.o ../ava.o ../init.o \
39                 ../schemaparse.o
40
41 all-local: build-ldbm build-edb2ldif build-chlog2replog
42
43 build-ldbm: FORCE
44         @if [ "$(BUILD_LDBM)" = "yes" ]; then \
45                 $(MAKE) $(MFLAGS) ldbm-tools; \
46     else \
47                 echo "run configure with --with-ldbm to build LDBM tools"; \
48     fi
49
50 ldbm-tools: $(PROGRAMS)
51
52 build-edb2ldif: FORCE
53         @if [ "$(HAVE_ISODE)" = "yes" ]; then \
54                 $(MAKE) $(MFLAGS) edb2ldif; \
55     else \
56                 echo "run configure with --with-isode to build edb2ldif"; \
57     fi
58
59 edb2ldif:       edb2-vers.o
60         $(CC) $(LDFLAGS) -o $@ $(EDB2LDIFOBJS) edb2-vers.o $(LIBS)
61
62 edb2-vers.c: $(EDB2LDIFOBJS)
63         $(RM) $@
64         (u=$${USER-root} v=`$(CAT) $(VERSIONFILE)` d=`$(PWD)` h=`$(HOSTNAME)` \
65         t=`$(DATE)`; $(SED) -e "s|%WHEN%|$${t}|" \
66         -e "s|%WHOANDWHERE%|$${u}@$${h}:$${d}|" \
67         -e "s|%VERSION%|$${v}|" \
68         < Vers-edb2.c > $@)
69
70 build-chlog2replog: FORCE
71         @if [ "$(HAVE_ISODE)" = "yes" ]; then \
72                 $(MAKE) $(MFLAGS) chlog2replog; \
73         else \
74                 echo "run configure with --with-isode to build chlog2replog"; \
75         fi
76
77 chlog2replog: chlog2replog.o ../lock.o ../ch_malloc.o
78         $(LTLINK) -o $@ chlog2replog.o ../lock.o ../ch_malloc.o $(LIBS)
79
80 ldif2index:     ldif2index.o ../libbackends.a $(OBJS2)
81         $(LTLINK) -o $@ ldif2index.o $(OBJS2) ../libbackends.a $(LIBS)
82
83 ldif2ldbm:      ldif2ldbm.o ../libbackends.a $(OBJS2)
84         $(LTLINK) -o $@ ldif2ldbm.o $(OBJS2) ../libbackends.a $(LIBS)
85
86 ldif2id2entry:  ldif2id2entry.o ../libbackends.a $(OBJS2)
87         $(LTLINK) -o $@ ldif2id2entry.o $(OBJS2) ../libbackends.a $(LIBS)
88
89 ldif2id2children:       ldif2id2children.o ../libbackends.a $(OBJS2)
90         $(LTLINK) -o $@ ldif2id2children.o $(OBJS2) ../libbackends.a $(LIBS)
91
92 ldbmcat:        ldbmcat.o
93         $(LTLINK) -o $@ ldbmcat.o $(LIBS)
94
95 ldif:           ldif.o
96         $(LTLINK) -o $@ ldif.o $(LIBS)
97
98 centipede:      centipede.o 
99         $(LTLINK) -o $@ centipede.o $(LIBS)
100
101 sizecount:      sizecount.o ../phonetic.o ../ch_malloc.o
102         $(LTLINK) -o $@ sizecount.o ../phonetic.o ../ch_malloc.o $(LIBS)
103
104 ldbmtest:       ldbmtest.o ../libbackends.a $(OBJS2)
105         $(LTLINK) -o ldbmtest ldbmtest.o $(OBJS2) ../libbackends.a $(LIBS)
106
107 clean-local: FORCE
108         $(RM) $(PROGRAMS) $(XPROGRAMS) $(XSRCS) edb2-vers.c \
109                 *.o core .libs/*
110
111 depend-local: FORCE
112         @DEPEND=no ; DEPEND_LDBM= ; DEPEND_ISODE= ; \
113         if [ "$(BUILD_LDBM)" = "yes" ]; then \
114         DEPEND_LDBM="$(SRCS)"; \
115                 DEPEND=yes ; \
116     fi; \
117         if [ "$(HAVE_ISODE)" = "yes" ]; then \
118         DEPEND_ISODE="$(ISODEINCLUDEFLAG) chlog2replog.c $(EDB2LDIFSRCS)"; \
119                 DEPEND=yes ; \
120     fi; \
121         if [ "$$DEPEND" = "yes" ]; then \
122         $(MKDEP) $(DEFS) $(DEFINES) $$DEPEND_ISODE $$DEPEND_LDBM; \
123         else \
124                 echo "slapd-tools: no dependencies to make"; \
125         fi
126
127 install-local: install-ldbm install-isode FORCE
128
129 install-ldbm: FORCE
130         @-$(MKDIR) $(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) ; \
140         else \
141                 exit 0 ; \
142         fi
143
144 install-isode: FORCE
145         @-$(MKDIR) $(sbindir)
146         @if [ "$(HAVE_ISODE)" = "yes" ]; then \
147                 $(LTINSTALL) $(INSTALLFLAGS) -m 755 edb2ldif $(sbindir); \
148                 $(LTINSTALL) $(INSTALLFLAGS) -m 755 chlog2replog $(sbindir); \
149         else \
150                 exit 0 ; \
151         fi
152