blob: 4ddc910c891e461d762a1b46b0b5db6c3569b64d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
.include <src.opts.mk>
.PATH: ${.CURDIR}/../../sys/dev/usb
FILESGROUPS= FILES
FILES= ascii birthtoken bsd-family-tree committers-doc.dot committers-ports.dot \
committers-src.dot flowers \
iso3166 iso639 latin1 mdoc.template operator pci_vendors \
scsi_modes usb_vendors \
organization.dot
FILESDIR= ${BINDIR}/misc
.if ${MK_USB} != "no"
FILES+= usb_hid_usages
FILES+= usbdevs
.endif
.if ${MK_EE} != "no"
FILESGROUPS+= EE
EE= init.ee
EEDIR= ${FILESDIR}
EEPACKAGE= ee
.endif
.include <bsd.prog.mk>
|