]> asedeno.scripts.mit.edu Git - linux.git/blobdiff - tools/testing/radix-tree/Makefile
radix tree test suite: use common find-bit code
[linux.git] / tools / testing / radix-tree / Makefile
index f2e07f2fd4b48282a274aae7c667a25116ab4505..3635e4d3eca7fcd8dae99f740c587b7ac02162b9 100644 (file)
@@ -1,10 +1,14 @@
 
-CFLAGS += -I. -g -O2 -Wall -D_LGPL_SOURCE
+CFLAGS += -I. -I../../include -g -O2 -Wall -D_LGPL_SOURCE
 LDFLAGS += -lpthread -lurcu
 TARGETS = main
 OFILES = main.o radix-tree.o linux.o test.o tag_check.o find_next_bit.o \
         regression1.o regression2.o regression3.o multiorder.o \
-        iteration_check.o
+        iteration_check.o benchmark.o
+
+ifdef BENCHMARK
+       CFLAGS += -DBENCHMARK=1
+endif
 
 targets: $(TARGETS)
 
@@ -14,7 +18,12 @@ main:        $(OFILES)
 clean:
        $(RM) -f $(TARGETS) *.o radix-tree.c
 
-$(OFILES): *.h */*.h ../../../include/linux/radix-tree.h ../../include/linux/*.h
+find_next_bit.o: ../../lib/find_bit.c
+       $(CC) $(CFLAGS) -c -o $@ $<
+
+$(OFILES): *.h */*.h \
+       ../../include/linux/*.h \
+       ../../../include/linux/radix-tree.h
 
 radix-tree.c: ../../../lib/radix-tree.c
        sed -e 's/^static //' -e 's/__always_inline //' -e 's/inline //' < $< > $@