aboutsummaryrefslogtreecommitdiff
path: root/Documentation/perf_counter/Makefile
blob: 194b66215588639a4feb555a012e246152a287cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
BINS = kerneltop perfstat

all: $(BINS)

kerneltop: kerneltop.c ../../include/linux/perf_counter.h
	cc -O6 -Wall -lrt -o $@ $<

perfstat: kerneltop
	ln -sf kerneltop perfstat

clean:
	rm $(BINS)