mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
New machine models introduce CHPIDs with two new CMG types 4 and 5. Add support for decoding the associated channel-measurement data. Reviewed-by: Vineeth Vijayan <vneethv@linux.ibm.com> Signed-off-by: Peter Oberparleiter <oberpar@linux.ibm.com> Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
20 lines
465 B
Makefile
20 lines
465 B
Makefile
include ../../../common.mak
|
|
|
|
all: chpstat
|
|
|
|
libs = $(rootdir)/libutil/libutil.a
|
|
|
|
chpstat: chpstat.o $(libs) column.o key.o cmg.o cmg_helper.o \
|
|
cmg1.o cmg2.o cmg3.o cmg4.o cmg5.o
|
|
|
|
install: all
|
|
$(INSTALL) -d -m 755 $(DESTDIR)$(BINDIR)
|
|
$(INSTALL) -g $(GROUP) -o $(OWNER) -m 755 chpstat $(DESTDIR)$(BINDIR)
|
|
$(INSTALL) -d -m 755 $(DESTDIR)$(MANDIR)/man8
|
|
$(INSTALL) -m 644 -c chpstat.8 $(DESTDIR)$(MANDIR)/man8
|
|
|
|
clean:
|
|
rm -f *.o chpstat
|
|
|
|
.PHONY: all install clean
|