opnsense-src/share/man/man7/Makefile
Alexander Ziaee 5dced41439 networking.7 : create network quickstart guide
Now that the handbook has been moved to ports, I think it's very nice to
have a network quickstart guide in-band, in base, in the system manual.
If the user uses any of the following terms "man -k
{network,networking,wifi,quickstart}" this page will come up, which is I
think a very common use case for new users.

Currently, this document explains connecting to a basic Ethernet
network, a basic wifi network, scanning for wifi networks, and airplane
mode, as well as linking to other sections, including the handbook

Co-authored-by: Graham Perrin <grahamperrin@gmail.com>
Reviewed by: imp, bcr, freebsd@igalic.co
Pull Request: https://github.com/freebsd/freebsd-src/pull/833

(cherry picked from commit 75eda0096b)
2024-05-20 21:16:16 -06:00

66 lines
1 KiB
Makefile

# @(#)Makefile 8.1 (Berkeley) 6/5/93
.include <src.opts.mk>
#MISSING: eqnchar.7 ms.7 term.7
MAN= arch.7 \
ascii.7 \
bsd.snmpmod.mk.7 \
build.7 \
c.7 \
clocks.7 \
crypto.7 \
development.7 \
environ.7 \
ffs.7 \
firewall.7 \
growfs.7 \
hier.7 \
hostname.7 \
intro.7 \
maclabel.7 \
mitigations.7 \
operator.7 \
orders.7 \
ports.7 \
release.7 \
sdoc.7 \
security.7 \
simd.7 \
sizeof.7 \
sprog.7 \
stats.7 \
stdint.7 \
sticky.7 \
tests.7 \
tuning.7
MLINKS= intro.7 miscellaneous.7
MLINKS+= growfs.7 growfs_fstab.7
MLINKS+= security.7 securelevel.7
MLINKS+= c.7 c78.7
MLINKS+= c.7 c89.7
MLINKS+= c.7 c90.7
MLINKS+= c.7 c95.7
MLINKS+= c.7 c99.7
MLINKS+= c.7 c11.7
MLINKS+= c.7 c17.7
MLINKS+= c.7 c2x.7
.if ${MK_INET} != "no"
MAN+= networking.7
MLINKS+= networking.7 wifi.7
.endif
.if ${MK_TESTS} != "no"
ATF= ${SRCTOP}/contrib/atf
.PATH: ${ATF}/doc
MAN+= atf.7
CLEANFILES+= atf.7
atf.7: atf.7.in
sed -e 's,__DOCDIR__,/usr/share/doc/atf,g' \
<"${ATF}/doc/atf.7.in" >atf.7
.endif
.include <bsd.prog.mk>