Index: trunk/devel/test.mak
===================================================================
--- trunk/devel/test.mak	(revision 998)
+++ trunk/devel/test.mak	(revision 1135)
@@ -1,17 +1,17 @@
 #! /usr/bin/make -f
 
-EXES=mem_test
-OBJS=mem.o
+EXES=allocator_test
+OBJS=allocator.o
 CC=gcc
-CFLAGS=-g -O0 -I. -D TEST -Wall
+CFLAGS=-g -O0 -I. -D TEST -D HAVE_XCACHE_TEST -Wall
 TEST=valgrind
 
-all: mem
+all: allocator
 
-mem_test: xcache/xc_mem.c xcache/xc_mem.h util/xc_trace.c util/xc_trace.h
-	$(CC) $(CFLAGS) -o mem_test xcache/xc_mem.c util/xc_trace.c
+allocator_test: xcache/xc_allocator.h xcache/xc_allocator.c xcache/xc_malloc.c xcache/xc_allocator_bestfit.c util/xc_trace.c util/xc_trace.h
+	$(CC) $(CFLAGS) -o allocator_test xcache/xc_allocator.c xcache/xc_malloc.c xcache/xc_allocator_bestfit.c util/xc_trace.c
 	
-mem: mem_test
-	$(TEST) ./mem_test
+allocator: allocator_test
+	$(TEST) ./allocator_test
 
 clean:
