diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-09-06 09:26:47 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:17:42 -0500 |
commit | 8915c36b3f6806cdc84a80fd92e3a02b6cd29abf (patch) | |
tree | ac9f9b204c50defcf4630e680ca81cbdb6639d99 /source4/lib/tdb | |
parent | db7de36b70ade32c4e077b3af47ef11bae1b80da (diff) | |
download | samba-8915c36b3f6806cdc84a80fd92e3a02b6cd29abf.tar.gz samba-8915c36b3f6806cdc84a80fd92e3a02b6cd29abf.tar.bz2 samba-8915c36b3f6806cdc84a80fd92e3a02b6cd29abf.zip |
r18149: fix make *clean
metze
(This used to be commit 477c83c9834fa4dde0b69f6413336144ea5d5bdb)
Diffstat (limited to 'source4/lib/tdb')
-rw-r--r-- | source4/lib/tdb/Makefile.in | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/source4/lib/tdb/Makefile.in b/source4/lib/tdb/Makefile.in index 63f32d9ea1..601df5fb91 100644 --- a/source4/lib/tdb/Makefile.in +++ b/source4/lib/tdb/Makefile.in @@ -19,7 +19,7 @@ CFLAGS = -I$(srcdir)/include -Iinclude -I@libreplacedir@ @CFLAGS@ PROGS = bin/tdbtool bin/tdbtorture TDB_OBJ = @TDBOBJ@ @LIBREPLACEOBJ@ -DIRS = lib bin common tools examples +DIRS = bin common tools all: showflags dirs $(PROGS) @@ -69,12 +69,13 @@ test: bin/tdbtorture installcheck: test install clean: - rm -f $(PROGS) common/*.o tools/*.o test.db test.tdb test.gdbm + rm -f $(PROGS) *.o *.a common/*.o tools/*.o tdb.pc + rm -f test.db test.tdb torture.tdb test.gdbm distclean: clean rm -f *~ */*~ - rm -f config.log config.status config.h + rm -f config.log config.status include/config.h rm -f Makefile realdistclean: distclean - rm -f configure config.h.in + rm -f configure include/config.h.in |