[PATCH] do not build the tdb binary programs, only the objects.

Now it's not necessary to have gdbm to build properly.
This commit is contained in:
greg@kroah.com 2003-10-08 06:09:57 -07:00 committed by Greg KH
parent e436917d9c
commit dca0297941
1 changed files with 3 additions and 1 deletions

View File

@ -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