blob: f50ee7112e069a5fff61d24c72aaa02f6ad5baab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# $NetBSD: Makefile,v 1.1 2017/06/01 09:58:27 pgoyette Exp $
.include "../Makefile.inc"
.PATH: ${S}/dev
KMOD= midi
IOCONF= midi.ioconf
SRCS= midi.c \
midictl.c \
midisyn.c
CPPFLAGS+= -DNMIDI=1 -DNSEQUENCER=1
# Rather than our usual WARNS=4, we need to use 3, since there are a
# lot of signed-vs-unsigned compares
WARNS= 3
.include <bsd.kmodule.mk>
|