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 7 KMOD= midi_seq 8 IOCONF= midi_seq.ioconf 9 10 SRCS= midi_seq_mod.c 11 SRCS+= midi.c \ 12 midictl.c \ 13 midisyn.c 14 SRCS+= sequencer.c 15 16 CPPFLAGS+= -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 21 WARNS= 3 22 23 .include <bsd.kmodule.mk> 24