blob: e81289fe00aba25a7d295060a78d01e4c9198293 (
plain)
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
|
# $NetBSD: Makefile,v 1.2 2019/02/17 04:05:51 rin Exp $
.include "../Makefile.inc"
.PATH: ${S}/dev/usb
.PATH: ${S}/dev/ic
KMOD= if_athn_usb
IOCONF= if_athn_usb.ioconf
SRCS= if_athn_usb.c
SRCS+= athn.c
SRCS+= arn5008.c
SRCS+= arn5416.c
SRCS+= arn9003.c
SRCS+= arn9280.c
SRCS+= arn9285.c
SRCS+= arn9287.c
SRCS+= arn9380.c
WARNS= 3
CPPFLAGS+= -DINET
CPPFLAGS+= -DNATHN_USB=1
CPPFLAGS+= -DATHN_DEBUG
.include <bsd.kmodule.mk>
|