mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-26 19:03:48 +01:00
e9ac41698b
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
33 lines
698 B
Makefile
33 lines
698 B
Makefile
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>
|