diff -urN embedded_innodb-1.0.0/tests/Makefile.am embedded_innodb-1.0.0-new/tests/Makefile.am
--- embedded_innodb-1.0.0/tests/Makefile.am	2009-04-22 00:58:04.000000000 +0200
+++ embedded_innodb-1.0.0-new/tests/Makefile.am	2009-06-17 18:52:39.000000000 +0200
@@ -37,6 +37,7 @@
 			  ib_test1.c \
 			  ib_test2.c \
 			  ib_test3.c \
+			  ib_test4.c \
 			  ib_test5.c \
 			  ib_types.c \
 			  test0aux.c \
diff -urN embedded_innodb-1.0.0/tests/Makefile.examples embedded_innodb-1.0.0-new/tests/Makefile.examples
--- embedded_innodb-1.0.0/tests/Makefile.examples	2009-04-22 00:58:04.000000000 +0200
+++ embedded_innodb-1.0.0-new/tests/Makefile.examples	2009-06-17 18:55:49.000000000 +0200
@@ -14,40 +14,40 @@
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
 CC=gcc
-TOP=../..
+TOP=/usr
 AUX=test0aux.o
 CFLAGS=-g -Wall
-INC=-I$(TOP)/include -I.
+INC=-I$(TOP)/include/embedded_innodb-1.0 -I.
 LIB=-L$(TOP)/lib -linnodb -lpthread -lz -lm
 
-all: cursor mt_stress perf1 test1 test2 test3 test4 test5 types
+all: ib_cursor ib_mt_stress ib_perf1 ib_test1 ib_test2 ib_test3 ib_test4 ib_test5 ib_types
 
-cursor:	cursor.o $(AUX)
-	$(CC) -o cursor cursor.o $(AUX) $(LIB)
+ib_cursor:	ib_cursor.o $(AUX)
+	$(CC) -o ib_cursor ib_cursor.o $(AUX) $(LIB)
 	
-mt_stress: mt_stress.o $(AUX)
-	$(CC) -o mt_stress mt_stress.o $(AUX) $(LIB)
+ib_mt_stress: ib_mt_stress.o $(AUX)
+	$(CC) -o ib_mt_stress ib_mt_stress.o $(AUX) $(LIB)
 
-perf1: perf1.o $(AUX)
-	$(CC) -o perf1 perf1.o $(AUX) $(LIB)
+ib_perf1: ib_perf1.o $(AUX)
+	$(CC) -o ib_perf1 ib_perf1.o $(AUX) $(LIB)
 
-test1:	test1.o $(AUX)
-	$(CC) -o test1 test1.o $(AUX) $(LIB)
+ib_test1:	ib_test1.o $(AUX)
+	$(CC) -o ib_test1 ib_test1.o $(AUX) $(LIB)
 
-test2:	test2.o $(AUX)
-	$(CC) -o test2 test2.o $(AUX) $(LIB)
+ib_test2:	ib_test2.o $(AUX)
+	$(CC) -o ib_test2 ib_test2.o $(AUX) $(LIB)
 
-test3:	test3.o $(AUX)
-	$(CC) -o test3 test3.o $(AUX) $(LIB)
+ib_test3:	ib_test3.o $(AUX)
+	$(CC) -o ib_test3 ib_test3.o $(AUX) $(LIB)
 
-test4:	test4.o $(AUX)
-	$(CC) -o test4 test4.o $(AUX) $(LIB)
+ib_test4:	ib_test4.o $(AUX)
+	$(CC) -o ib_test4 ib_test4.o $(AUX) $(LIB)
 
-test5:	test5.o $(AUX)
-	$(CC) -o test5	test5.o $(AUX) $(LIB)
+ib_test5:	ib_test5.o $(AUX)
+	$(CC) -o ib_test5	ib_test5.o $(AUX) $(LIB)
 
-types:	types.o $(AUX)
-	$(CC) -o types types.o $(AUX) $(LIB)
+ib_types:	ib_types.o $(AUX)
+	$(CC) -o ib_types ib_types.o $(AUX) $(LIB)
 
 .c.o:
 	$(CC) -c $(CFLAGS) $(INC) $<

