aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/radix-tree/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/testing/radix-tree/Makefile')
-rw-r--r--tools/testing/radix-tree/Makefile46
1 files changed, 32 insertions, 14 deletions
diff --git a/tools/testing/radix-tree/Makefile b/tools/testing/radix-tree/Makefile
index 3635e4d3eca7..f11315bedefc 100644
--- a/tools/testing/radix-tree/Makefile
+++ b/tools/testing/radix-tree/Makefile
@@ -1,29 +1,47 @@
1 1
2CFLAGS += -I. -I../../include -g -O2 -Wall -D_LGPL_SOURCE 2CFLAGS += -I. -I../../include -g -O2 -Wall -D_LGPL_SOURCE -fsanitize=address
3LDFLAGS += -lpthread -lurcu 3LDFLAGS += -lpthread -lurcu
4TARGETS = main 4TARGETS = main idr-test multiorder
5OFILES = main.o radix-tree.o linux.o test.o tag_check.o find_next_bit.o \ 5CORE_OFILES := radix-tree.o idr.o linux.o test.o find_bit.o
6 regression1.o regression2.o regression3.o multiorder.o \ 6OFILES = main.o $(CORE_OFILES) regression1.o regression2.o regression3.o \
7 iteration_check.o benchmark.o 7 tag_check.o multiorder.o idr-test.o iteration_check.o benchmark.o
8 8
9ifdef BENCHMARK 9ifndef SHIFT
10 CFLAGS += -DBENCHMARK=1 10 SHIFT=3
11endif 11endif
12 12
13targets: $(TARGETS) 13targets: mapshift $(TARGETS)
14 14
15main: $(OFILES) 15main: $(OFILES)
16 $(CC) $(CFLAGS) $(LDFLAGS) $(OFILES) -o main 16 $(CC) $(CFLAGS) $(LDFLAGS) $^ -o main
17
18idr-test: idr-test.o $(CORE_OFILES)
19 $(CC) $(CFLAGS) $(LDFLAGS) $^ -o idr-test
20
21multiorder: multiorder.o $(CORE_OFILES)
22 $(CC) $(CFLAGS) $(LDFLAGS) $^ -o multiorder
17 23
18clean: 24clean:
19 $(RM) -f $(TARGETS) *.o radix-tree.c 25 $(RM) $(TARGETS) *.o radix-tree.c idr.c generated/map-shift.h
20 26
21find_next_bit.o: ../../lib/find_bit.c 27vpath %.c ../../lib
22 $(CC) $(CFLAGS) -c -o $@ $<
23 28
24$(OFILES): *.h */*.h \ 29$(OFILES): *.h */*.h generated/map-shift.h \
25 ../../include/linux/*.h \ 30 ../../include/linux/*.h \
26 ../../../include/linux/radix-tree.h 31 ../../include/asm/*.h \
32 ../../../include/linux/radix-tree.h \
33 ../../../include/linux/idr.h
27 34
28radix-tree.c: ../../../lib/radix-tree.c 35radix-tree.c: ../../../lib/radix-tree.c
29 sed -e 's/^static //' -e 's/__always_inline //' -e 's/inline //' < $< > $@ 36 sed -e 's/^static //' -e 's/__always_inline //' -e 's/inline //' < $< > $@
37
38idr.c: ../../../lib/idr.c
39 sed -e 's/^static //' -e 's/__always_inline //' -e 's/inline //' < $< > $@
40
41.PHONY: mapshift
42
43mapshift:
44 @if ! grep -qw $(SHIFT) generated/map-shift.h; then \
45 echo "#define RADIX_TREE_MAP_SHIFT $(SHIFT)" > \
46 generated/map-shift.h; \
47 fi