mirror of
https://github.com/samba-team/samba.git
synced 2025-01-17 02:05:21 +03:00
7e4c4721b4
a --with-spinlocks option to configure, this does mean the on-disk tdb format has changed, so 2.2alphaX sites will need to re-create their tdb's. The upside is no more tdb fragmentation and a +5% on netbench. Swings and roundabouts.... Jeremy. (This used to be commit 9dea7b7c257db487f8ced7dad3fce92fba03ea91)
22 lines
498 B
Makefile
22 lines
498 B
Makefile
#
|
|
# Makefile for tdb directory
|
|
#
|
|
|
|
CFLAGS = -DSTANDALONE -DTDB_DEBUG -g -DHAVE_MMAP=1
|
|
CC = gcc
|
|
PROGS = tdbtest tdbtool tdbtorture
|
|
|
|
default: $(PROGS)
|
|
|
|
tdbtest: tdbtest.o tdb.o spinlock.o
|
|
$(CC) $(CFLAGS) -o tdbtest tdbtest.o tdb.o spinlock.o -lgdbm
|
|
|
|
tdbtool: tdbtool.o tdb.o spinlock.o
|
|
$(CC) $(CFLAGS) -o tdbtool tdbtool.o tdb.o spinlock.o
|
|
|
|
tdbtorture: tdbtorture.o tdb.o
|
|
$(CC) $(CFLAGS) -o tdbtorture tdbtorture.o tdb.o spinlock.o
|
|
|
|
clean:
|
|
rm -f $(PROGS) *.o *~ *% core test.db test.tdb test.gdbm
|