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