diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-09-06 09:44:12 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:17:42 -0500 |
commit | 6513e415b810eae9476fa1092d72ee734bdca7bc (patch) | |
tree | 95b7b2de807448c8185b5f145f37e80e59656e06 /source4 | |
parent | 8915c36b3f6806cdc84a80fd92e3a02b6cd29abf (diff) | |
download | samba-6513e415b810eae9476fa1092d72ee734bdca7bc.tar.gz samba-6513e415b810eae9476fa1092d72ee734bdca7bc.tar.bz2 samba-6513e415b810eae9476fa1092d72ee734bdca7bc.zip |
r18150: fix make *clean
metze
(This used to be commit e354cd0fae7ad87be30a820954dc840271301177)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/lib/ldb/Makefile.in | 18 |
1 files changed, 8 insertions, 10 deletions
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@ |