diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-09-06 06:47:10 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:17:39 -0500 |
commit | eb1def379e12264438504402a543490a06036e00 (patch) | |
tree | e4a0a67160677e0c939918592aaa952b65d0c28d /source4/lib/talloc | |
parent | 90f485eecd86490ba03fb3b46fef00f9d0c6c6b1 (diff) | |
download | samba-eb1def379e12264438504402a543490a06036e00.tar.gz samba-eb1def379e12264438504402a543490a06036e00.tar.bz2 samba-eb1def379e12264438504402a543490a06036e00.zip |
r18142: add make distclean to talloc build
metze
(This used to be commit c8342c9ae5b37acd72271e025f0ee735a95cf8e5)
Diffstat (limited to 'source4/lib/talloc')
-rw-r--r-- | source4/lib/talloc/Makefile.in | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/source4/lib/talloc/Makefile.in b/source4/lib/talloc/Makefile.in index cc319a1b7f..73336c2933 100644 --- a/source4/lib/talloc/Makefile.in +++ b/source4/lib/talloc/Makefile.in @@ -46,7 +46,7 @@ doc: talloc.3 talloc.3.html -test -z "$(XSLTPROC)" || $(XSLTPROC) --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl $< clean: - rm -f *~ $(LIBOBJ) libtalloc.a testsuite *.gc?? talloc.3 talloc.3.html + rm -f *~ $(LIBOBJ) libtalloc.a testsuite testsuite.o *.gc?? talloc.3 talloc.3.html test: testsuite ./testsuite @@ -59,7 +59,10 @@ installcheck: distclean: clean rm -f *~ */*~ - rm -rf autom4te.cache - rm -f configure \ - config.log config.status config.h rm -f Makefile + rm -f config.log \ + config.status \ + config.h + +realdistclean: distclean + rm -f configure config.h.in |