summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2000-02-28 00:51:53 +0000
committerTim Potter <tpot@samba.org>2000-02-28 00:51:53 +0000
commit60ae73c257e84aa128954f0cf5cf59e7996c68d9 (patch)
tree9a3462768f07b762a7ffd98445d82d6d7a815997
parent110ec9923bd2ad729d63f129514f3f1de76de9c1 (diff)
downloadsamba-60ae73c257e84aa128954f0cf5cf59e7996c68d9.tar.gz
Makefile for tdb directory.
-rw-r--r--source/tdb/Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/source/tdb/Makefile b/source/tdb/Makefile
new file mode 100644
index 00000000000..dbc59047c74
--- /dev/null
+++ b/source/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