87c1627502
categories, view packages, mark packages for installation, de-installation, or re-installation, calculate and track dependencies, as well as ability to review selections. Still to come is the actual processing of selections (performing the various actions associated with the user's selections, such as installing dependencies first, then selections, etc.).
33 lines
421 B
Makefile
33 lines
421 B
Makefile
# $FreeBSD$
|
|
|
|
SUBDIR= console \
|
|
diskmgmt \
|
|
docsinstall \
|
|
dot \
|
|
examples \
|
|
include \
|
|
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>
|