mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
lsiucvallow is just a symlink to chiucvallow for 'chiucvallow --list'. Only a man page for chiucvallow is provided though. A corresponding man page for lsiucvallow could be expected by the user. Certain linter such as linitan warn about the missing man page, too. Install lsiucvallow.8 as a symlink to chiucvallow.8 to make the documentation of these tools more accessible. Github-ID: https://github.com/ibm-s390-linux/s390-tools/issues/170 Reviewed-by: Steffen Eiden <seiden@linux.ibm.com> Reviewed-by: Hendrik Brueckner <brueckner@linux.ibm.com> Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
29 lines
582 B
Makefile
29 lines
582 B
Makefile
#! /usr/bin/make -f
|
|
|
|
include ../../common.mak
|
|
|
|
MANS = iucvconn.1 iucvtty.1 ts-shell.1 hvc_iucv.9 chiucvallow.8 ttyrun.8
|
|
|
|
all:
|
|
|
|
check:
|
|
|
|
install: install-man
|
|
|
|
install-man: $(MANS)
|
|
for man in $(MANS); do \
|
|
msection=`echo $$man |sed 's/.*\.\([1-9]\)$$/man\1/'` ; \
|
|
$(INSTALL) -g $(GROUP) -o $(OWNER) -m 644 -D $$man $(DESTDIR)$(MANDIR)/$$msection/$$man ; \
|
|
done
|
|
ln -f -s chiucvallow.8 $(DESTDIR)$(MANDIR)/man8/lsiucvallow.8
|
|
|
|
clean:
|
|
|
|
pdf: $(MANS)
|
|
for man in $(MANS); do \
|
|
man -t ./$$man |ps2pdf -sPAPERSIZE=a4 - $${man}.pdf ; \
|
|
done
|
|
|
|
|
|
.PHONY: install-man install clean pdf
|