]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blob - tools/perf/config/feature-checks/Makefile
tools/perf/build: Add 'autodep' functionality, generate feature test dependencies...
[mirror_ubuntu-zesty-kernel.git] / tools / perf / config / feature-checks / Makefile
1
2 FILES=test-hello
3
4 CC := $(CC) -MD
5
6 all: $(FILES)
7
8 BUILD = $(CC) -o $(OUTPUT)$@ $@.c
9
10 ###############################
11
12 test-hello:
13 $(BUILD)
14
15 -include *.d */*.d
16
17 ###############################
18
19 clean:
20 rm -f $(FILES) *.d