1 # $NetBSD: Makefile,v 1.38 2023/11/23 21:16:13 riastradh 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+= sticky.7 32 MAN+= symlink.7 33 MAN+= sysctl.7 34 MAN+= tests.7 35 MAN+= users.7 36 37 CLEANFILES= tests.7 38 .if ${MKKYUA} != "no" 39 tests.7: tests.kyua.7 40 rm -f ${.TARGET} && cp ${.ALLSRC} ${.TARGET} 41 .else 42 tests.7: tests.atf.7 43 rm -f ${.TARGET} && cp ${.ALLSRC} ${.TARGET} 44 .endif 45 46 MLINKS+=c.7 c78.7 \ 47 c.7 c89.7 \ 48 c.7 c90.7 \ 49 c.7 c99.7 \ 50 c.7 c11.7 \ 51 entropy.7 random.7 52 53 .include <bsd.man.mk> 54