258590,258592,258727-258728,258785, with the following descriptions: Revisions 258400-258401,258406-258407,258590,258727-258728,258785: + Add a new `includes' module (see: bsdconfig includes -h) for exploring the bsdconfig(8) API Remaining revisions: 258592: Sort all the messages.subr files 258355: Fix typo in a comment in networking/device.subr 258360: Whitespace, style, and other changes in networking/device.subr 258418: Quote interface names for good measure in networking/device.subr 258430: Remove an unused line in networking/device.subr 258439: Minor bugfix to f_die() function in common.subr 258589: Minor bugfix to syscons_ttys module
34 lines
433 B
Makefile
34 lines
433 B
Makefile
# $FreeBSD$
|
|
|
|
SUBDIR= console \
|
|
diskmgmt \
|
|
docsinstall \
|
|
dot \
|
|
examples \
|
|
include \
|
|
includes \
|
|
mouse \
|
|
networking \
|
|
packages \
|
|
password \
|
|
security \
|
|
share \
|
|
startup \
|
|
timezone \
|
|
ttys \
|
|
usermgmt
|
|
|
|
FILESDIR= ${LIBEXECDIR}/bsdconfig
|
|
FILES= USAGE
|
|
|
|
SCRIPTS= bsdconfig
|
|
|
|
MAN= bsdconfig.8
|
|
|
|
beforeinstall:
|
|
mkdir -p ${DESTDIR}${FILESDIR}
|
|
mkdir -p ${DESTDIR}${SCRIPTSDIR}
|
|
mkdir -p ${DESTDIR}${MANDIR}8
|
|
|
|
.include <bsd.prog.mk>
|