blob: 6a224e2dc9a9cf76d780dcb6aada41494a9ad0ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $NetBSD: Makefile.usbdevs,v 1.10 2017/04/18 19:04:25 riastradh Exp $
#
# As per tron@NetBSD.org, the proper procedure is
#
# 1.) Change "src/sys/dev/usb/usbdevs".
# 2.) Commit "src/sys/dev/usb/usbdevs".
# 3.) Execute "make -f Makefile.usbdevs" in "src/sys/dev/usb".
# 4.) Ensure that the value of USB_MAX_STRING_LEN is at least as large as
# the values reported. If necessary, update "src/sys/dev/usb/usb.h"
# and bump the kernel version in "src/sys/sys/param.h".
# 5.) Commit "src/sys/dev/usb/usbdevs.h" and "src/sys/dev/usb/usbdevs_data.h";
# if you changed them, also commit "src/sys/dev/usb/usb.h" and
# "src/sys/sys/param.h".
.include <bsd.own.mk>
usbdevs.h usbdevs_data.h: ${.CURDIR}/../devlist2h.awk usbdevs
/bin/rm -f usbdevs.h usbdevs_data.h
${TOOL_AWK} -f ${.ALLSRC}
|