mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
Return the PMU name as found in the sysfs tree given a PMU type number. Signed-off-by: Thomas Richter <tmricht@linux.ibm.com> Reviewed-by: Jan Höppner <hoeppner@linux.ibm.com> Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
20 lines
324 B
Makefile
20 lines
324 B
Makefile
include ../common.mak
|
|
|
|
lib = libcpumf.a
|
|
|
|
examples = libcpumf_example
|
|
|
|
all: $(lib)
|
|
examples: $(lib) $(examples)
|
|
|
|
objects = libcpumf_pmutype.o libcpumf_cpuset.o libcpumf_support.o
|
|
|
|
$(lib): $(objects)
|
|
|
|
install: all
|
|
|
|
libcpumf_example: libcpumf_example.o $(lib) $(rootdir)/libutil/libutil.a
|
|
|
|
clean:
|
|
rm -f *.o $(lib) $(examples)
|