mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
Remove option -c for implicit dump file conversion from vmdump format to lkcd format. If option -c is specified, an error message is printed and the program terminates. A hint to the new conversion tool zgetdump is shown. Option -c is not listed in the help text. The man page is also updated to reflect this change. With zgetdump tool now supporting vmdump file format there is no need to convert a vmdump file while extracting it from the reader device. Use commands 1. vmur rec <spool-id> VMDUMP_FILE 2. zgetdump VMDUMP_FILE ELF_FILE to extract a vmdump file from the reader and convert it to elf format. Note to Maintainer: The rename of file vmur.cpp to vmur.c triggers the pre-commit checking of git-format-clang. This checking fails. This is intended. The patch shows the changes for this line item. The pre-commit checking fails on many, many changes not touched for changed by this patch. The pre-commit failure should be fixed with a follow-on patch. Suggested-by: Heiko Carstens <hca@linux.ibm.com> Signed-off-by: Thomas Richter <tmricht@linux.ibm.com> Acked-by: Jan Hoeppner <hoeppner@linux.ibm.com> Signed-off-by: Steffen Eiden <seiden@linux.ibm.com>
25 lines
527 B
Makefile
25 lines
527 B
Makefile
include ../common.mak
|
|
|
|
ALL_CPPFLAGS += -D_FILE_OFFSET_BITS=64
|
|
LDLIBS += -lz
|
|
|
|
all: vmur
|
|
|
|
libs = $(rootdir)/libvmcp/libvmcp.a $(rootdir)/libutil/libutil.a
|
|
|
|
objects = vmur.o
|
|
|
|
vmur: $(objects) $(libs)
|
|
$(LINK) $(ALL_LDFLAGS) $^ $(LDLIBS) -o $@
|
|
|
|
install: all
|
|
$(INSTALL) -d -m 755 $(DESTDIR)$(USRSBINDIR) $(DESTDIR)$(MANDIR)/man8
|
|
$(INSTALL) -g $(GROUP) -o $(OWNER) -m 755 vmur $(DESTDIR)$(USRSBINDIR)
|
|
$(INSTALL) -g $(GROUP) -o $(OWNER) -m 644 vmur.8 \
|
|
$(DESTDIR)$(MANDIR)/man8
|
|
|
|
clean:
|
|
rm -f *.o vmur
|
|
|
|
.PHONY: all install clean
|