diff options
author | John Terpstra <jht@samba.org> | 2004-05-27 12:50:55 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:51:49 -0500 |
commit | 73b9376e26e7e16c05cad6bc83ca1235a0436eb3 (patch) | |
tree | 39fffd270d390e8fe178c96e56b8b02fe21dc13c /source3/tdb | |
parent | d01371a3f90f0ac4bf59768f9532bcba4047f535 (diff) | |
download | samba-73b9376e26e7e16c05cad6bc83ca1235a0436eb3.tar.gz samba-73b9376e26e7e16c05cad6bc83ca1235a0436eb3.tar.bz2 samba-73b9376e26e7e16c05cad6bc83ca1235a0436eb3.zip |
r923: Fixes so tdbtool and tdbtest can be built. Added build specs for tdbdump and tdbbackup.
(This used to be commit c5dc3da3406541891f412d32c292765d7b650f0f)
Diffstat (limited to 'source3/tdb')
-rw-r--r-- | source3/tdb/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source3/tdb/Makefile b/source3/tdb/Makefile index 59fbb079bd..92bc33a661 100644 --- a/source3/tdb/Makefile +++ b/source3/tdb/Makefile @@ -5,11 +5,14 @@ CFLAGS = -DSTANDALONE -DTDB_DEBUG -g -DHAVE_MMAP=1 CC = gcc +ADMINPROGS = tdbdump tdbbackup PROGS = tdbtest tdbtool tdbtorture -TDB_OBJ = tdb.o spinlock.o +TDB_OBJ = tdb.o spinlock.o tdbback.o default: $(PROGS) +admintools: $(ADMINPROGS) + tdbtest: tdbtest.o $(TDB_OBJ) $(CC) $(CFLAGS) -o tdbtest tdbtest.o $(TDB_OBJ) -lgdbm |