4c1a82cea5
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
20 lines
443 B
Makefile
20 lines
443 B
Makefile
# $FreeBSD$
|
|
|
|
LIB= ugidfw
|
|
SHLIB_MAJOR= 5
|
|
SRCS= ugidfw.c
|
|
INCS= ugidfw.h
|
|
|
|
WARNS?= 2
|
|
|
|
MAN+= bsde_get_rule.3 bsde_get_rule_count.3 bsde_parse_rule.3 \
|
|
bsde_rule_to_string.3 libugidfw.3
|
|
|
|
MLINKS= bsde_get_rule.3 bsde_add_rule.3
|
|
MLINKS+= bsde_get_rule.3 bsde_delete_rule.3
|
|
MLINKS+= bsde_get_rule.3 bsde_set_rule.3
|
|
MLINKS+= bsde_get_rule_count.3 bsde_get_rule_slots.3
|
|
MLINKS+= bsde_parse_rule.3 bsde_parse_rule_string.3
|
|
|
|
.include <bsd.lib.mk>
|