openrc/man/Makefile

46 lines
1.1 KiB
Makefile
Raw Normal View History

MK= ../mk
include ${MK}/sys.mk
include ${MK}/os.mk
MAN3= einfo.3 \
rc_config.3 rc_deptree.3 rc_find_pids.3 rc_plugin_hook.3 \
rc_runlevel.3 rc_service.3 rc_stringlist.3
MAN8= rc-service.8 rc-status.8 rc-update.8 openrc.8 openrc-run.8 \
2017-10-13 05:17:36 +05:30
start-stop-daemon.8 supervise-daemon.8
2007-12-24 17:18:33 +05:30
ifeq (${OS},Linux)
MAN8 += rc-sstat.8 openrc-init.8 openrc-shutdown.8
endif
2007-12-25 04:04:22 +05:30
# Handy macro to create symlinks
# This does rely on correctly formatting our manpages!
MAKE_LINKS= suffix=$${man\#*.}; \
prefix=$${man%%.*}; \
for link in `sed -e 's/ ,//g' \
-n -e '/^\.Sh NAME$$/,/\.Sh/ s/\.Nm //p' $${man}`; do \
if test "$${link}" != "$${prefix}" ; then \
ln -sf $${man} \
2008-03-25 23:07:54 +05:30
${DESTDIR}/${MANDIR}/man$${suffix}/$${link}.$${suffix} ; \
fi; \
done;
2007-12-25 04:04:22 +05:30
2009-04-30 19:35:39 +05:30
include ${MK}/gitignore.mk
all:
install:
2008-03-25 23:02:19 +05:30
${INSTALL} -d ${DESTDIR}/${MANDIR}/man3
for man in ${MAN3}; do \
2008-03-25 23:02:19 +05:30
${INSTALL} -m ${MANMODE} "$$man" ${DESTDIR}/${MANDIR}/man3 || exit $$?; \
${MAKE_LINKS} \
2012-01-22 05:47:42 +05:30
done
2008-03-25 23:02:19 +05:30
${INSTALL} -d ${DESTDIR}/${MANDIR}/man8
for man in ${MAN8}; do \
2008-03-25 23:02:19 +05:30
${INSTALL} -m ${MANMODE} "$$man" ${DESTDIR}/${MANDIR}/man8 || exit $$?; \
${MAKE_LINKS} \
done
2008-03-24 11:40:40 +05:30
check test::
clean: