1 # $NetBSD: Makefile,v 1.39 2023/11/23 23:29:42 rin Exp $ 2 # @(#)Makefile 8.1 (Berkeley) 6/5/93 3 4 .include <bsd.init.mk> 5 6 # missing: eqnchar.7 man.7 ms.7 term.7 7 8 MAN+= ascii.7 9 MAN+= c.7 10 MAN+= entropy.7 11 MAN+= environ.7 12 MAN+= glob.7 13 MAN+= groups.7 14 MAN+= hier.7 15 MAN+= hostname.7 16 MAN+= intro.7 17 MAN+= kernel_sanitizers.7 18 MAN+= mailaddr.7 19 MAN+= module.7 20 MAN+= nls.7 21 MAN+= operator.7 22 MAN+= orders.7 23 MAN+= pkgsrc.7 24 MAN+= release.7 25 MAN+= rfc6056.7 26 MAN+= script.7 27 MAN+= security.7 28 MAN+= setuid.7 29 MAN+= signal.7 30 MAN+= src.7 31 MAN+= stack.7 32 MAN+= sticky.7 33 MAN+= symlink.7 34 MAN+= sysctl.7 35 MAN+= tests.7 36 MAN+= users.7 37 38 CLEANFILES= tests.7 39 .if ${MKKYUA} != "no" 40 tests.7: tests.kyua.7 41 rm -f ${.TARGET} && cp ${.ALLSRC} ${.TARGET} 42 .else 43 tests.7: tests.atf.7 44 rm -f ${.TARGET} && cp ${.ALLSRC} ${.TARGET} 45 .endif 46 47 MLINKS+=c.7 c78.7 \ 48 c.7 c89.7 \ 49 c.7 c90.7 \ 50 c.7 c99.7 \ 51 c.7 c11.7 \ 52 entropy.7 random.7 53 54 .include <bsd.man.mk> 55