mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
Use the new libvmcp.a to send commands to z/VM CP. The error messages remain unchanged. Local header file vmcp.h now only contains variable definitions and some defines used by vmcp.c. Move them to the source file and remove the now empty header file. Signed-off-by: Thomas Richter <tmricht@linux.vnet.ibm.com> Reviewed-by: Jan Höppner <hoeppner@linux.vnet.ibm.com> Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
19 lines
408 B
Makefile
19 lines
408 B
Makefile
include ../common.mak
|
|
|
|
all: vmcp
|
|
|
|
libs = $(rootdir)/libvmcp/libvmcp.a $(rootdir)/libutil/libutil.a
|
|
|
|
vmcp: vmcp.o $(libs)
|
|
|
|
install: all
|
|
$(INSTALL) -d -m 755 $(DESTDIR)$(BINDIR) $(DESTDIR)$(MANDIR)/man8
|
|
$(INSTALL) -g $(GROUP) -o $(OWNER) -m 755 vmcp $(DESTDIR)$(BINDIR)
|
|
$(INSTALL) -g $(GROUP) -o $(OWNER) -m 644 vmcp.8 \
|
|
$(DESTDIR)$(MANDIR)/man8
|
|
|
|
clean:
|
|
rm -f *.o *~ vmcp core
|
|
|
|
.PHONY: all install clean
|