Author: metze Date: 2006-09-06 09:44:12 +0000 (Wed, 06 Sep 2006) New Revision: 18150
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=18150 Log: fix make *clean 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-09-06 09:26:47 UTC (rev 18149) +++ branches/SAMBA_4_0/source/lib/ldb/Makefile.in 2006-09-06 09:44:12 UTC (rev 18150) @@ -51,7 +51,7 @@ 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 @@ 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 @@ ctags: ctags `find $(srcdir) -name "*.[ch]"` - [EMAIL PROTECTED]@: - cd @REPLACE_DIR@ && ./autogen.sh && ./configure - $(MAKE) -C @REPLACE_DIR@
