summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcvs2svn Import User <samba-bugs@samba.org>2000-02-28 00:51:55 +0000
committercvs2svn Import User <samba-bugs@samba.org>2000-02-28 00:51:55 +0000
commitcc9dc3574076b300dfd3029d08eef4bf05bac172 (patch)
tree9c576feabff2a3537fde8fe7e874ba0f4ebcf09b
parent1a1b9f773dbf4407c5943c2936c1d60a55334d28 (diff)
parent60ae73c257e84aa128954f0cf5cf59e7996c68d9 (diff)
downloadsamba-cc9dc3574076b300dfd3029d08eef4bf05bac172.tar.gz
This commit was manufactured by cvs2svn to create branch 'SAMBA_TNG'.
-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