aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/perf_counter/Makefile
blob: 666da95a78774b3e5729b04eb66cea1fd7ace195 (plain) (blame)
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 `pkg-config --cflags --libs glib-2.0` -o $@ $<

perfstat: kerneltop
	ln -sf kerneltop perfstat

clean:
	rm $(BINS)