From: greg@kroah.com Date: Wed, 8 Oct 2003 13:09:57 +0000 (-0700) Subject: [PATCH] do not build the tdb binary programs, only the objects. X-Git-Tag: 003~20 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dca0297941cd27117c23ea868caa82710a58948c;p=systemd [PATCH] do not build the tdb binary programs, only the objects. Now it's not necessary to have gdbm to build properly. --- diff --git a/tdb/Makefile b/tdb/Makefile index 06e31fcc..021cb35c 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