blob: e1ab4362f95e32bcb22d257fc7f8d2e38bf14fba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $NetBSD: Makefile,v 1.4 2015/11/16 23:27:08 pooka Exp $
#
RUMPTOP=${TOPRUMP}
.PATH: ${RUMPTOP}/../dev/pci
LIB= rumpdev_pci_eap
COMMENT=Ensoniq AudioPCI driver
IOCONF= PCI_EAP.ioconf
RUMP_COMPONENT=ioconf
SRCS+= eap.c
CPPFLAGS+= -I${RUMPTOP}/librump/rumpkern -I${RUMPTOP}/../dev
CPPFLAGS+= -I${.CURDIR}/../libaudio
.include "${RUMPTOP}/Makefile.rump"
.include <bsd.lib.mk>
.include <bsd.klinks.mk>
|