cf0e07e504
- Bump shared library version on libusbhid. - Retire libusbhid.h; it is called usbhid.h now. - hid_start_parse() takes a third argument. - hid_locate() takes a fifth argument. - hid_report_size() order of arguments changes. - Other changes, including formatting and whitespace. Bump __FreeBSD_version. This change will break all third party applications that rely on previous FreeBSD specific behavior.
25 lines
586 B
Makefile
25 lines
586 B
Makefile
# $NetBSD: Makefile,v 1.5 1999/07/23 09:44:38 mrg Exp $
|
|
# $FreeBSD$
|
|
|
|
MAINTAINER= n_hibma@FreeBSD.ORG
|
|
|
|
LIB= usbhid
|
|
MAN= usbhid.3
|
|
|
|
SHLIB_MAJOR= 1
|
|
|
|
MLINKS= usbhid.3 libusbhid.3 usbhid.3 hid_get_report_desc.3 \
|
|
usbhid.3 hid_dispose_report_desc.3 \
|
|
usbhid.3 hid_start_parse.3 usbhid.3 hid_end_parse.3 \
|
|
usbhid.3 hid_get_item.3 usbhid.3 hid_report_size.3 \
|
|
usbhid.3 hid_locate.3 \
|
|
usbhid.3 hid_usage_page.3 usbhid.3 hid_usage_in_page.3 \
|
|
usbhid.3 hid_init.3 \
|
|
usbhid.3 hid_get_data.3 usbhid.3 hid_set_data.3
|
|
|
|
SRCS= descr.c parse.c usage.c data.c
|
|
|
|
INCS= usbhid.h
|
|
|
|
.include <bsd.lib.mk>
|