r923: Fixes so tdbtool and tdbtest can be built. Added build specs for tdbdump and...
authorJohn Terpstra <jht@samba.org>
Thu, 27 May 2004 12:50:55 +0000 (12:50 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 15:51:49 +0000 (10:51 -0500)
(This used to be commit c5dc3da3406541891f412d32c292765d7b650f0f)

source3/tdb/Makefile

index 59fbb079bd041aae081db0e4ac18ec391b8618a3..92bc33a661ec3a8a2049b7a68cb02f60e8eb67cf 100644 (file)
@@ -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