head	1.1;
access;
symbols
	netbsd-11-0-RC3:1.1
	netbsd-11-0-RC2:1.1
	netbsd-11-0-RC1:1.1
	perseant-exfatfs-base-20250801:1.1
	netbsd-11:1.1.0.12
	netbsd-11-base:1.1
	netbsd-10-1-RELEASE:1.1
	perseant-exfatfs-base-20240630:1.1
	perseant-exfatfs:1.1.0.10
	perseant-exfatfs-base:1.1
	netbsd-10-0-RELEASE:1.1
	netbsd-10-0-RC6:1.1
	netbsd-10-0-RC5:1.1
	netbsd-10-0-RC4:1.1
	netbsd-10-0-RC3:1.1
	netbsd-10-0-RC2:1.1
	thorpej-ifq:1.1.0.8
	thorpej-ifq-base:1.1
	thorpej-altq-separation:1.1.0.6
	thorpej-altq-separation-base:1.1
	netbsd-10-0-RC1:1.1
	netbsd-10:1.1.0.4
	netbsd-10-base:1.1
	bouyer-sunxi-drm:1.1.0.2
	bouyer-sunxi-drm-base:1.1;
locks; strict;
comment	@# @;


1.1
date	2022.06.04.03.31.10;	author pgoyette;	state Exp;
branches;
next	;
commitid	1bEs5V0mEmyIHFGD;


desc
@@


1.1
log
@Combine the midi and sequencer modules into a single midi_seq module
to avoid a circular dependency as noted in kern/56772.  Retain minimal
modules of the original names to accomodate auto-loading upon access
to the /dev/xxx nodes.
@
text
@#	$NetBSD: Makefile,v 1.2 2019/02/17 04:05:54 rin Exp $

.include "../Makefile.inc"

.PATH:	${S}/dev

KMOD=	midi_seq
IOCONF=	midi_seq.ioconf

SRCS=	midi_seq_mod.c
SRCS+=	midi.c \
	midictl.c \
	midisyn.c
SRCS+=	sequencer.c

CPPFLAGS+=	-DNMIDI=1 -DNSEQUENCER=1

# Rather than our usual WARNS=5, we need to use 3, since there are a
# lot of signed-vs-unsigned compares

WARNS=  3

.include <bsd.kmodule.mk>
@
