mirror of
https://git.freebsd.org/src.git
synced 2026-01-16 23:02:24 +00:00
Now that rc.subr(8) no longer depends on sysrc(8), bsdconfig does not need to be part of -utilities. Move it to a -bsdconfig package. Differential Revision: https://reviews.freebsd.org/D51543
33 lines
392 B
Makefile
33 lines
392 B
Makefile
.include <src.opts.mk>
|
|
|
|
PACKAGE= bsdconfig
|
|
|
|
SUBDIR= console \
|
|
diskmgmt \
|
|
docsinstall \
|
|
dot \
|
|
include \
|
|
includes \
|
|
mouse \
|
|
networking \
|
|
packages \
|
|
password \
|
|
security \
|
|
share \
|
|
startup \
|
|
timezone \
|
|
ttys \
|
|
usermgmt
|
|
|
|
.if ${MK_EXAMPLES} != "no"
|
|
SUBDIR+= examples
|
|
.endif
|
|
|
|
FILESDIR= ${LIBEXECDIR}/bsdconfig
|
|
FILES= USAGE
|
|
|
|
SCRIPTS= bsdconfig
|
|
|
|
MAN= bsdconfig.8
|
|
|
|
.include <bsd.prog.mk>
|