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