X-Git-Url: https://git.sommitrealweird.co.uk/onak.git/blobdiff_plain/e02c731dfbb288c736f2cd09a9b6df0507c59ddd..a953676d714ba11d3b9509bbea747ad0858b28ba:/Makefile?ds=inline

diff --git a/Makefile b/Makefile
index 9f432b8..4eb0ad7 100644
--- a/Makefile
+++ b/Makefile
@@ -4,10 +4,10 @@ CC = gcc
 CFLAGS += -Wall -pedantic -g -I/usr/local/include
 #LDFLAGS += -pg
 # Can be "pg" for Postgresql, "file" for flat files or "db2" for pksd db2 style.
-DBTYPE = pg
+DBTYPE = db3
 # If using DBTYPE of "file" then comment the following line out.
-LIBS = -L/usr/local/lib -lpq
-#LIBS = -L/usr/local/lib -ldb2
+#LIBS = -L/usr/local/lib -lpq
+LIBS = -L/usr/local/lib -ldb3
 
 PROGS = add lookup gpgwww onak
 OBJS = armor.o parsekey.o keydb_$(DBTYPE).o merge.o keyid.o md5.o sha.o \
@@ -52,6 +52,4 @@ clean:
 depend:
 	makedepend $(SRCS)
 
-keydb_pg.o: keydb.o
-
 # DO NOT DELETE