a77ce411ec
The default package use to be FreeBSD-runtime but it should only contain binaries and libs enough to boot to single user and repair the system, it is also very handy to have a package that can be tranform to a small mfsroot. So create a new package named FreeBSD-utilities and make it the default one. Also move a few binaries and lib into this package when it make sense. Reviewed by: bapt, gjb Differential Revision: https://reviews.freebsd.org/D21506
16 lines
304 B
Makefile
16 lines
304 B
Makefile
# $FreeBSD$
|
|
|
|
LIB= com_err
|
|
SRCS= com_err.c error.c
|
|
INCS= ${COM_ERRDIR}/com_err.h ${COM_ERRDIR}/com_right.h
|
|
MAN= com_err.3
|
|
COM_ERRDIR= ${SRCTOP}/contrib/com_err
|
|
CFLAGS+= -I${COM_ERRDIR}
|
|
|
|
LDFLAGS= -Wl,--no-undefined
|
|
VERSION_MAP= ${COM_ERRDIR}/version-script.map
|
|
|
|
.include <bsd.lib.mk>
|
|
|
|
.PATH: ${COM_ERRDIR}
|