8f6b8f1a28
This manual page intends to describe the structure and behavior of the FreeBSD test suite installed in /usr/tests. The contents have been inherited from the NetBSD manual page. As a side effect, this also updates the hier(7) manual page to mention /usr/tests and points at tests(7) for more details. Submitted by: Julio Merino jmmv google.com Reviewed by: sjg MFC after: 2 weeks
44 lines
631 B
Makefile
44 lines
631 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/5/93
|
|
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
#MISSING: eqnchar.7 ms.7 term.7
|
|
MAN= adding_user.7 \
|
|
ascii.7 \
|
|
bsd.snmpmod.mk.7 \
|
|
build.7 \
|
|
clocks.7 \
|
|
c99.7 \
|
|
development.7 \
|
|
environ.7 \
|
|
ffs.7 \
|
|
firewall.7 \
|
|
hier.7 \
|
|
hostname.7 \
|
|
intro.7 \
|
|
maclabel.7 \
|
|
mailaddr.7 \
|
|
operator.7 \
|
|
ports.7 \
|
|
release.7 \
|
|
sdoc.7 \
|
|
security.7 \
|
|
sprog.7 \
|
|
stdint.7 \
|
|
sticky.7 \
|
|
tuning.7
|
|
|
|
.if ${MK_TESTS} != "no"
|
|
MAN+= tests.7
|
|
.endif
|
|
|
|
MLINKS= intro.7 miscellaneous.7
|
|
MLINKS+= security.7 securelevel.7
|
|
MLINKS+= c99.7 c.7
|
|
MLINKS+= c99.7 c78.7
|
|
MLINKS+= c99.7 c89.7
|
|
MLINKS+= c99.7 c90.7
|
|
|
|
.include <bsd.prog.mk>
|