summaryrefslogblamecommitdiffstats
path: root/tools/perf/config/feature-checks/Makefile
blob: b3f6372ad8b0a3e01c0c2023a4f3049040c2e8b1 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                 

FILES=test-hello

all: $(FILES)

BUILD = $(CC) -o $(OUTPUT)$@ $@.c

###############################

test-hello: test-hello.c
	$(BUILD)

###############################

clean:
	rm -f $(FILES)