mirror of
https://github.com/samba-team/samba.git
synced 2025-01-25 06:04:04 +03:00
16cc345d4f
This renames everything from tdb2 to ntdb: importantly, we no longer use the tdb_ namespace, so you can link against both ntdb and tdb if you want to. This also enables building of standalone ntdb by the autobuild script. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
17 lines
490 B
Makefile
17 lines
490 B
Makefile
OBJS:=../../ntdb.o ../../hash.o ../../tally.o
|
|
CFLAGS:=-I../../.. -I.. -Wall -g -O3 #-g -pg
|
|
LDFLAGS:=-L../../..
|
|
|
|
default: ntdbtorture ntdbtool ntdbdump ntdbrestore mkntdb speed growtdb-bench
|
|
|
|
ntdbdump: ntdbdump.c $(OBJS)
|
|
ntdbrestore: ntdbrestore.c $(OBJS)
|
|
ntdbtorture: ntdbtorture.c $(OBJS)
|
|
ntdbtool: ntdbtool.c $(OBJS)
|
|
mkntdb: mkntdb.c $(OBJS)
|
|
speed: speed.c $(OBJS)
|
|
growtdb-bench: growtdb-bench.c $(OBJS)
|
|
|
|
clean:
|
|
rm -f ntdbtorture ntdbdump ntdbrestore ntdbtool mkntdb speed growtdb-bench
|