mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
genprotimg is a user command and as such installed into /usr/bin. Adapt the man page accordingly and move it from section 8 (system commnds) to section 1 (user commands). Reported-by: Marc Hartmayer <mhartmay@linux.ibm.com> Reviewed-by: Marc Hartmayer <mhartmay@linux.ibm.com> Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
13 lines
204 B
Makefile
13 lines
204 B
Makefile
# Common definitions
|
|
include ../../common.mak
|
|
|
|
all:
|
|
|
|
install:
|
|
$(INSTALL) -d -m 755 $(DESTDIR)$(MANDIR)/man1
|
|
$(INSTALL) -m 644 -c genprotimg.1 $(DESTDIR)$(MANDIR)/man1
|
|
|
|
clean:
|
|
|
|
.PHONY: all install clean
|