]> Git Repo - linux.git/blob - tools/testing/radix-tree/Makefile
Linux 6.14-rc3
[linux.git] / tools / testing / radix-tree / Makefile
1 # SPDX-License-Identifier: GPL-2.0
2
3 .PHONY: clean
4
5 TARGETS = main idr-test multiorder xarray maple
6 CORE_OFILES = $(SHARED_OFILES) xarray.o maple.o test.o
7 OFILES = main.o $(CORE_OFILES) regression1.o regression2.o \
8          regression3.o regression4.o tag_check.o multiorder.o idr-test.o \
9         iteration_check.o iteration_check_2.o benchmark.o
10
11 targets: generated/map-shift.h generated/bit-length.h $(TARGETS)
12
13 include ../shared/shared.mk
14
15 main:   $(OFILES)
16
17 idr-test.o: ../../../lib/test_ida.c
18 idr-test: idr-test.o $(CORE_OFILES)
19
20 xarray: $(CORE_OFILES) xarray.o
21
22 maple: $(CORE_OFILES) maple.o
23
24 multiorder: multiorder.o $(CORE_OFILES)
25
26 clean:
27         $(RM) $(TARGETS) *.o radix-tree.c idr.c generated/*
28
29 $(OFILES): $(SHARED_DEPS) *.h
This page took 0.038337 seconds and 4 git commands to generate.