mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
Add option -s or --short to display the header using a short counter name. With this option the counter symbol names, which can be very long as in IDCW_ON_DRAWER_DRAWER_HIT are replaced by a shorter name. That name consists of an abbrevation for the counter set this counter belongs to and the counter number in that set. The abbrevations are: B --> Basic counter set P --> Problem state counter set C --> Crypto counter set E --> Extended counter set M --> MT_Diagnostic counter set U --> Undefined counter. Display E165 for counter name IDCW_ON_DRAWER_DRAWER_HIT which is counter number 165 from the extended counter set. Signed-off-by: Thomas Richter <tmricht@linux.ibm.com> Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
21 lines
347 B
Makefile
21 lines
347 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 \
|
|
libcpumf_ctrset.o
|
|
|
|
$(lib): $(objects)
|
|
|
|
install: all
|
|
|
|
libcpumf_example: libcpumf_example.o $(lib) $(rootdir)/libutil/libutil.a
|
|
|
|
clean:
|
|
rm -f *.o $(lib) $(examples)
|