Author: metze
Date: 2006-01-11 16:04:28 +0000 (Wed, 11 Jan 2006)
New Revision: 12846

WebSVN: 
http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=12846

Log:
some fixes

metze
Modified:
   branches/SAMBA_4_0/source/lib/ldb/Makefile.in


Changeset:
Modified: branches/SAMBA_4_0/source/lib/ldb/Makefile.in
===================================================================
--- branches/SAMBA_4_0/source/lib/ldb/Makefile.in       2006-01-11 16:00:27 UTC 
(rev 12845)
+++ branches/SAMBA_4_0/source/lib/ldb/Makefile.in       2006-01-11 16:04:28 UTC 
(rev 12846)
@@ -73,8 +73,10 @@
 
 DIRS = lib bin
 
-all: $(DIRS) $(BINS) $(LIBS) manpages
+MANPAGES = $(patsubst %.xml,%,$(wildcard man/*.xml))
 
+all: $(DIRS) $(BINS) $(LIBS) $(EXAMPLES) $(MANPAGES)
+
 .c.o:
        @echo Compiling $*.c
        @$(CC) $(CFLAGS) -c $< -o $@
@@ -111,7 +113,7 @@
 bin/oLschema2ldif: tools/oLschema2ldif.o tools/cmdline.o $(LIBS)
        $(CC) -o bin/oLschema2ldif tools/oLschema2ldif.o tools/cmdline.o 
$(LIB_FLAGS)
 
-.SUFFIXES: .1 .2 .3 .yo
+.SUFFIXES: .1 .1.xml .3 .3.xml .xml .html
 
 %.3: %.3.xml
        test -z "$(XSLTPROC)" || $(XSLTPROC) -o $@ 
http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
@@ -125,13 +127,17 @@
 manpages: $(patsubst %.xml,%,$(wildcard man/*.xml))
 
 clean:
-       rm -f */*.o *.gcov */*.gc?? *~ */*~ man/man?/*.[13] tdbtest.ldb* \
-       $(BINS) $(TDB_OBJ) $(TALLOC_OBJ) $(LDB_LIB)
+       rm -f */*.o *.gcov */*.gc?? tdbtest.ldb* \
+       rm -f $(BINS) $(TDB_OBJ) $(TALLOC_OBJ) $(LDB_LIB)
+       rm -f $(MANPAGES)
 
-distclean:     clean
+distclean: clean
+       rm -f *~ */*~
        rm -rf autom4te.cache bin lib
-       rm -f configure config.log config.status ldb.pc \
-           Makefile.ldb include/config.h include/config.h.in
+       rm -f configure \
+               config.log config.status \
+               include/config.h include/config.h.in \
+       rm -f ldb.pc
        rm -f Makefile
 
 etags:

Reply via email to