diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2016-03-30 06:38:48 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2016-03-30 06:38:48 +0000 |
commit | 22c99bcd0d1aacbc678f4a711ffe6a55178e6c28 (patch) | |
tree | fc5a38e208ec108f56afffc16f05c640e740cc20 /lib/libusbhid | |
parent | c18d4a3d864d24448fec6853ae70834f8dae3a40 (diff) |
for some time now mandoc has not required MLINKS to function
correctly - logically complete that now by removing MLINKS from base;
authors need only to ensure there is an entry in NAME for any function/
util being added. MLINKS will still work, and remain for perl to ease
upgrades;
ok nicm (curses) bcook (ssl)
ok schwarze, who provided a lot of feedback and assistance
ok tb natano jung
Diffstat (limited to 'lib/libusbhid')
-rw-r--r-- | lib/libusbhid/Makefile | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/lib/libusbhid/Makefile b/lib/libusbhid/Makefile index 2ef7949294e..2d5a75004ad 100644 --- a/lib/libusbhid/Makefile +++ b/lib/libusbhid/Makefile @@ -1,26 +1,9 @@ -# $OpenBSD: Makefile,v 1.7 2012/08/02 13:38:39 okan Exp $ +# $OpenBSD: Makefile,v 1.8 2016/03/30 06:38:43 jmc Exp $ # $NetBSD: Makefile,v 1.5 1999/07/23 09:44:38 mrg Exp $ LIB= usbhid MAN= usbhid.3 -MLINKS= usbhid.3 hid_dispose_report_desc.3 \ - usbhid.3 hid_end_parse.3 \ - usbhid.3 hid_get_data.3 \ - usbhid.3 hid_get_item.3 \ - usbhid.3 hid_get_report_desc.3 \ - usbhid.3 hid_init.3 \ - usbhid.3 hid_start.3 \ - usbhid.3 hid_locate.3 \ - usbhid.3 hid_parse_usage_in_page.3 \ - usbhid.3 hid_parse_usage_page.3 \ - usbhid.3 hid_report_size.3 \ - usbhid.3 hid_set_data.3 \ - usbhid.3 hid_start_parse.3 \ - usbhid.3 hid_usage_in_page.3 \ - usbhid.3 hid_usage_page.3 \ - usbhid.3 hid_use_report_desc.3 - SRCS= descr.c parse.c usage.c data.c CPPFLAGS+= -I${.CURDIR} |