From dca0297941cd27117c23ea868caa82710a58948c Mon Sep 17 00:00:00 2001 From: "greg@kroah.com" Date: Wed, 8 Oct 2003 06:09:57 -0700 Subject: [PATCH] [PATCH] do not build the tdb binary programs, only the objects. Now it's not necessary to have gdbm to build properly. --- tdb/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tdb/Makefile b/tdb/Makefile index 06e31fcc7..021cb35c9 100644 --- a/tdb/Makefile +++ b/tdb/Makefile @@ -7,7 +7,9 @@ CFLAGS = -DSTANDALONE -DTDB_DEBUG -g -DHAVE_MMAP=1 PROGS = tdbtest tdbtool tdbtorture TDB_OBJ = tdb.o spinlock.o -default: $(PROGS) +default: $(TDB_OBJ) + +progs: $(PROGS) tdbtest: tdbtest.o $(TDB_OBJ) $(CC) $(CFLAGS) -o tdbtest tdbtest.o $(TDB_OBJ) -lgdbm -- 2.30.2