From 6513e415b810eae9476fa1092d72ee734bdca7bc Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Wed, 6 Sep 2006 09:44:12 +0000 Subject: r18150: fix make *clean metze (This used to be commit e354cd0fae7ad87be30a820954dc840271301177) --- source4/lib/ldb/Makefile.in | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) (limited to 'source4/lib/ldb') diff --git a/source4/lib/ldb/Makefile.in b/source4/lib/ldb/Makefile.in index f25a676723..b3205a57c3 100644 --- a/source4/lib/ldb/Makefile.in +++ b/source4/lib/ldb/Makefile.in @@ -51,7 +51,7 @@ LIBS = $(LDB_LIB) EXAMPLES = examples/ldbreader examples/ldifreader -DIRS = lib bin common ldb_tdb ldb_ldap ldb_sqlite3 modules tools examples tdb talloc +DIRS = lib bin common ldb_tdb ldb_ldap ldb_sqlite3 modules tools examples all: showflags dirs $(OBJS) $(LDB_LIB) $(BINS) $(EXAMPLES) manpages @@ -111,21 +111,23 @@ doxygen: test -z "$(DOXYGEN)" || (cd $(srcdir) && "$(DOXYGEN)") clean: - rm -f */*.o *.gcov */*.gc?? tdbtest.ldb* \ + rm -f *.o */*.o *.gcov */*.gc?? tdbtest.ldb* rm -f $(BINS) $(TDB_OBJ) $(TALLOC_OBJ) $(LDB_LIB) rm -f man/*.1 man/*.3 man/*.html rm -f $(EXAMPLES) rm -rf apidocs/ + rm -rf tests/schema/ distclean: clean rm -f *~ */*~ - rm -rf autom4te.cache bin lib - rm -f configure \ - config.log config.status \ - include/config.h include/config.h.in \ + rm -rf bin lib + rm -f config.log config.status include/config.h rm -f ldb.pc rm -f Makefile +realdistclean: distclean + rm -f configure.in include/config.h.in + test: all for t in $(TESTS); do echo STARTING $${t}; $(srcdir)/tests/$${t} || exit 1; done @@ -152,7 +154,3 @@ etags: ctags: ctags `find $(srcdir) -name "*.[ch]"` - -@REPLACE_LIB@: - cd @REPLACE_DIR@ && ./autogen.sh && ./configure - $(MAKE) -C @REPLACE_DIR@ -- cgit