From 40f313f0cc9351d4c14b2450993d013382787cbf Mon Sep 17 00:00:00 2001 From: Steve White Date: Thu, 11 Nov 2010 21:29:24 -0800 Subject: [PATCH] Build the skipdb tests, and add them to the test target. --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 222a394..d559a97 100644 --- a/Makefile +++ b/Makefile @@ -6,6 +6,7 @@ all: cd libs/jfile/tests; make cd libs/udb; make cd libs/skipdb; make + cd libs/skipdb/tests; make #cd libs/tagdb; make clean: @@ -14,7 +15,9 @@ clean: cd libs/jfile/tests; make clean cd libs/udb; make clean cd libs/skipdb; make clean + cd libs/skipdb/tests; make clean #cd libs/tagdb; make clean test: cd libs/jfile/tests; ./test + cd libs/skipdb/tests; ./test