mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-10 14:39:47 -04:00
22 lines
417 B
Makefile
22 lines
417 B
Makefile
# $NetBSD: Makefile,v 1.8 2015/08/24 23:01:59 pooka Exp $
|
|
#
|
|
|
|
.PATH: ${.CURDIR}/../../../../dev/usb
|
|
|
|
LIB= rumpdev_usb
|
|
|
|
.if ${MACHINE} == "i386" || ${MACHINE} == "amd64"
|
|
IOCONF= USB.ioconf
|
|
|
|
SRCS= usb.c usbdi.c usbdi_util.c usb_mem.c usb_subr.c usb_quirks.c \
|
|
uhub.c usbroothub_subr.c usb_verbose.c
|
|
SRCS+= usb_at_hc.c
|
|
.else
|
|
SRCS= dummy.c
|
|
.endif
|
|
|
|
#CPPFLAGS+= -DUHUB_DEBUG
|
|
|
|
.include <bsd.lib.mk>
|
|
.include <bsd.klinks.mk>
|