From 1f6f8c2241f2f25b6c3002fb91fe711cb352a07f Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Mon, 28 Feb 2000 00:51:53 +0000 Subject: Makefile for tdb directory. (This used to be commit 60ae73c257e84aa128954f0cf5cf59e7996c68d9) --- source3/tdb/Makefile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 source3/tdb/Makefile (limited to 'source3/tdb/Makefile') diff --git a/source3/tdb/Makefile b/source3/tdb/Makefile new file mode 100644 index 0000000000..dbc59047c7 --- /dev/null +++ b/source3/tdb/Makefile @@ -0,0 +1,21 @@ +# +# Makefile for tdb directory +# + +CFLAGS = -DSTANDALONE -DTDB_DEBUG -g -DMMAP +CC = gcc +PROGS = tdbtest tdbtool tdbtorture + +default: $(PROGS) + +tdbtest: tdbtest.o tdb.o + gcc -o tdbtest tdbtest.o tdb.o -lgdbm + +tdbtool: tdbtool.o tdb.o + gcc -o tdbtool tdbtool.o tdb.o + +tdbtorture: tdbtorture.o tdb.o + gcc -o tdbtorture tdbtorture.o tdb.o + +clean: + rm -f $(PROGS) *.o *~ *% core test.db test.tdb test.gdbm -- cgit