diff options
Diffstat (limited to 'tools/testing/radix-tree/Makefile')
| -rw-r--r-- | tools/testing/radix-tree/Makefile | 46 |
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 | ||
| 2 | CFLAGS += -I. -I../../include -g -O2 -Wall -D_LGPL_SOURCE | 2 | CFLAGS += -I. -I../../include -g -O2 -Wall -D_LGPL_SOURCE -fsanitize=address |
| 3 | LDFLAGS += -lpthread -lurcu | 3 | LDFLAGS += -lpthread -lurcu |
| 4 | TARGETS = main | 4 | TARGETS = main idr-test multiorder |
| 5 | OFILES = main.o radix-tree.o linux.o test.o tag_check.o find_next_bit.o \ | 5 | CORE_OFILES := radix-tree.o idr.o linux.o test.o find_bit.o |
| 6 | regression1.o regression2.o regression3.o multiorder.o \ | 6 | OFILES = 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 | ||
| 9 | ifdef BENCHMARK | 9 | ifndef SHIFT |
| 10 | CFLAGS += -DBENCHMARK=1 | 10 | SHIFT=3 |
| 11 | endif | 11 | endif |
| 12 | 12 | ||
| 13 | targets: $(TARGETS) | 13 | targets: mapshift $(TARGETS) |
| 14 | 14 | ||
| 15 | main: $(OFILES) | 15 | main: $(OFILES) |
| 16 | $(CC) $(CFLAGS) $(LDFLAGS) $(OFILES) -o main | 16 | $(CC) $(CFLAGS) $(LDFLAGS) $^ -o main |
| 17 | |||
| 18 | idr-test: idr-test.o $(CORE_OFILES) | ||
| 19 | $(CC) $(CFLAGS) $(LDFLAGS) $^ -o idr-test | ||
| 20 | |||
| 21 | multiorder: multiorder.o $(CORE_OFILES) | ||
| 22 | $(CC) $(CFLAGS) $(LDFLAGS) $^ -o multiorder | ||
| 17 | 23 | ||
| 18 | clean: | 24 | clean: |
| 19 | $(RM) -f $(TARGETS) *.o radix-tree.c | 25 | $(RM) $(TARGETS) *.o radix-tree.c idr.c generated/map-shift.h |
| 20 | 26 | ||
| 21 | find_next_bit.o: ../../lib/find_bit.c | 27 | vpath %.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 | ||
| 28 | radix-tree.c: ../../../lib/radix-tree.c | 35 | radix-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 | |||
| 38 | idr.c: ../../../lib/idr.c | ||
| 39 | sed -e 's/^static //' -e 's/__always_inline //' -e 's/inline //' < $< > $@ | ||
| 40 | |||
| 41 | .PHONY: mapshift | ||
| 42 | |||
| 43 | mapshift: | ||
| 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 | ||
