mirror of
https://github.com/adulau/aha.git
synced 2025-01-01 05:36:24 +00:00
e0143bad9d
Initial version of kerneltop.c and perfstat.c. Acked-by: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Paul Mackerras <paulus@samba.org> Signed-off-by: Ingo Molnar <mingo@elte.hu>
12 lines
213 B
Makefile
12 lines
213 B
Makefile
BINS = kerneltop perfstat
|
|
|
|
all: $(BINS)
|
|
|
|
kerneltop: kerneltop.c perfcounters.h
|
|
cc -O6 -Wall -lrt `pkg-config --cflags --libs glib-2.0` -o $@ $<
|
|
|
|
perfstat: kerneltop
|
|
ln -sf kerneltop perfstat
|
|
|
|
clean:
|
|
rm $(BINS)
|