11 lines
254 B
Makefile
11 lines
254 B
Makefile
|
# Makefile for the Orinoco wireless card (Prism chipset)
|
||
|
PROG= orinoco
|
||
|
SRCS= orinoco.c hermes.c
|
||
|
|
||
|
DPADD+= ${LIBNETDRIVER} ${LIBSYS} ${LIBTIMERS}
|
||
|
LDADD+= -lnetdriver -lsys -ltimers
|
||
|
|
||
|
CPPFLAGS.orinoco.c+= -I${NETBSDSRCDIR}/minix
|
||
|
|
||
|
.include <minix.service.mk>
|