Files
linux-apfs/Documentation/perf_counter/Makefile
T

13 lines
195 B
Makefile
Raw Normal View History

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)