xref: /freebsd/lib/libgpio/Makefile (revision ccc6cf3b67edb9d50f6edb74c9b0e2c23f8b24d3)
1LIB=	gpio
2SHLIB_MAJOR= 0
3
4SRCS=	gpio.c
5INCS=	libgpio.h
6MAN+=	gpio.3
7
8CFLAGS+= -I${.CURDIR}
9
10MLINKS=	gpio.3 gpio_open.3 \
11	gpio.3 gpio_open_device.3 \
12	gpio.3 gpio_close.3 \
13	gpio.3 gpio_pin_list.3 \
14	gpio.3 gpio_pin_config.3 \
15	gpio.3 gpio_pin_set_flags.3 \
16	gpio.3 gpio_pin_set_name.3 \
17	gpio.3 gpio_pin_get.3 \
18	gpio.3 gpio_pin_set.3 \
19	gpio.3 gpio_pin_low.3 \
20	gpio.3 gpio_pin_high.3 \
21	gpio.3 gpio_pin_input.3 \
22	gpio.3 gpio_pin_output.3 \
23	gpio.3 gpio_pin_opendrain.3 \
24	gpio.3 gpio_pin_pushpull.3 \
25	gpio.3 gpio_pin_tristate.3 \
26	gpio.3 gpio_pin_pullup.3 \
27	gpio.3 gpio_pin_pulldown.3 \
28	gpio.3 gpio_pin_invin.3 \
29	gpio.3 gpio_pin_invout.3 \
30	gpio.3 gpio_pin_pulsate.3 \
31	gpio.3 gpio_configure_events.3 \
32	gpio.3 gpio_fileno.3
33
34.include <bsd.lib.mk>
35