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
35 lines
711 B
Makefile
35 lines
711 B
Makefile
# $FreeBSD$
|
|
|
|
LIB= gpio
|
|
SHLIB_MAJOR= 0
|
|
|
|
SRCS= gpio.c
|
|
INCS= libgpio.h
|
|
MAN+= gpio.3
|
|
|
|
CFLAGS+= -I${.CURDIR}
|
|
|
|
MLINKS= gpio.3 gpio_open.3 \
|
|
gpio.3 gpio_open_device.3 \
|
|
gpio.3 gpio_close.3 \
|
|
gpio.3 gpio_pin_list.3 \
|
|
gpio.3 gpio_pin_config.3 \
|
|
gpio.3 gpio_pin_set_flags.3 \
|
|
gpio.3 gpio_pin_set_name.3 \
|
|
gpio.3 gpio_pin_get.3 \
|
|
gpio.3 gpio_pin_set.3 \
|
|
gpio.3 gpio_pin_low.3 \
|
|
gpio.3 gpio_pin_high.3 \
|
|
gpio.3 gpio_pin_input.3 \
|
|
gpio.3 gpio_pin_output.3 \
|
|
gpio.3 gpio_pin_opendrain.3 \
|
|
gpio.3 gpio_pin_pushpull.3 \
|
|
gpio.3 gpio_pin_tristate.3 \
|
|
gpio.3 gpio_pin_pullup.3 \
|
|
gpio.3 gpio_pin_pulldown.3 \
|
|
gpio.3 gpio_pin_invin.3 \
|
|
gpio.3 gpio_pin_invout.3 \
|
|
gpio.3 gpio_pin_pulsate.3
|
|
|
|
.include <bsd.lib.mk>
|