aboutsummaryrefslogtreecommitdiff
path: root/doc/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'doc/Makefile')
-rw-r--r--doc/Makefile23
1 files changed, 18 insertions, 5 deletions
diff --git a/doc/Makefile b/doc/Makefile
index a34cee0..6919488 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -8,9 +8,12 @@ include $(topdir)/Make.Rules
MAN1S = capsh.1
MAN3S = cap_init.3 cap_free.3 cap_dup.3 \
cap_clear.3 cap_clear_flag.3 cap_get_flag.3 cap_set_flag.3 \
+ cap_fill.3 cap_fill_flag.3 cap_max_bits.3 \
cap_compare.3 cap_get_proc.3 cap_get_pid.3 cap_set_proc.3 \
cap_get_file.3 cap_get_fd.3 cap_set_file.3 cap_set_fd.3 \
+ cap_set_nsowner.3 cap_get_nsowner.3 \
cap_copy_ext.3 cap_size.3 cap_copy_int.3 cap_mode.3 \
+ cap_copy_int_check.3 cap_set_syscall.3 \
cap_from_text.3 cap_to_text.3 cap_from_name.3 cap_to_name.3 \
capsetp.3 capgetp.3 libcap.3 \
cap_get_bound.3 cap_drop_bound.3 \
@@ -21,22 +24,32 @@ MAN3S = cap_init.3 cap_free.3 cap_dup.3 \
cap_launcher_set_chroot.3 cap_launcher_set_mode.3 \
cap_launcher_setgroups.3 cap_launcher_setuid.3 \
cap_launcher_set_iab.3 cap_new_launcher.3 \
- cap_iab.3 cap_iab_init.3 cap_iab_get_proc.3 cap_iab_set_proc.3 \
+ cap_iab.3 cap_iab_init.3 cap_iab_dup.3 cap_iab_compare.3 \
+ cap_iab_get_proc.3 cap_iab_get_pid.3 cap_iab_set_proc.3 \
cap_iab_to_text.3 cap_iab_from_text.3 cap_iab_get_vector.3 \
- cap_iab_set_vector.3 cap_iab_fill.3 \
- psx_syscall.3 psx_syscall3.3 psx_syscall6.3 libpsx.3
-MAN8S = getcap.8 setcap.8 getpcaps.8
+ cap_iab_set_vector.3 cap_iab_fill.3 cap_proc_root.3 \
+ cap_prctl.3 cap_prctlw.3 \
+ psx_syscall.3 psx_syscall3.3 psx_syscall6.3 psx_set_sensitivity.3 \
+ psx_load_syscalls.3 __psx_syscall.3 \
+ libpsx.3
+MAN8S = getcap.8 setcap.8 getpcaps.8 captree.8
MANS = $(MAN1S) $(MAN3S) $(MAN8S)
all: $(MANS)
+test:
+ @echo no doc tests available
+
+sudotest:
+ @echo no doc sudotests available
+
.PHONY: html
html:
mkdir -p html
for man in $(MANS) ; \
do \
- egrep '^\.so man' $$man > /dev/null || \
+ $(BUILD_EGREP) '^\.so man' $$man > /dev/null || \
groff -man -Thtml $$man > html/$$man.html ; \
done