mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
update manpages of zipl(8), zipl.conf(5) w/ zipl environment stuff Reviewed-by: Stefan Haberland <sth@linux.ibm.com> Reviewed-by: Peter Oberparleiter <oberpar@linux.ibm.com> Signed-off-by: Eduard Shishkin <edward6@linux.ibm.com> Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
23 lines
711 B
Makefile
23 lines
711 B
Makefile
# Common definitions
|
|
include ../../common.mak
|
|
|
|
all:
|
|
|
|
install:
|
|
$(INSTALL) -d -m 755 $(DESTDIR)$(MANDIR)/man5
|
|
$(INSTALL) -d -m 755 $(DESTDIR)$(MANDIR)/man8
|
|
sed -e 's@%SYSCONFDIR%@$(SYSCONFDIR)@' \
|
|
-e 's@%TOOLS_LIBDIR%@$(TOOLS_LIBDIR)@' zipl.8.in \
|
|
> $(DESTDIR)$(MANDIR)/man8/zipl.8
|
|
sed -e 's@%SYSCONFDIR%@$(SYSCONFDIR)@' \
|
|
-e 's@%TOOLS_LIBDIR%@$(TOOLS_LIBDIR)@' zipl-editenv.8.in \
|
|
> $(DESTDIR)$(MANDIR)/man8/zipl-editenv.8
|
|
sed -e 's@%SYSCONFDIR%@$(SYSCONFDIR)@' \
|
|
-e 's@%TOOLS_LIBDIR%@$(TOOLS_LIBDIR)@' zipl.conf.5.in \
|
|
> $(DESTDIR)$(MANDIR)/man5/zipl.conf.5
|
|
chmod 644 $(DESTDIR)$(MANDIR)/man8/zipl.8 \
|
|
$(DESTDIR)$(MANDIR)/man8/zipl-editenv.8 \
|
|
$(DESTDIR)$(MANDIR)/man5/zipl.conf.5
|
|
|
|
clean:
|