chiark / gitweb /
[PATCH] do not build the tdb binary programs, only the objects.
authorgreg@kroah.com <greg@kroah.com>
Wed, 8 Oct 2003 13:09:57 +0000 (06:09 -0700)
committerGreg KH <gregkh@suse.de>
Wed, 27 Apr 2005 04:01:40 +0000 (21:01 -0700)
Now it's not necessary to have gdbm to build properly.

tdb/Makefile

index 06e31fcc7fa6f099c9c5016600ed5ada13931ce1..021cb35c95ce99a2e7bcf92cd2f563d4862992d6 100644 (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