Makefile revision 1.1
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 7KMOD= audio 8IOCONF= audio.ioconf 9SRCS= audio.c \ 10 auconv.c \ 11 aurateconv.c \ 12 auvolconv.c \ 13 mulaw.c 14 15CPPFLAGS+= -DNAUDIO=1 -DNAURATECONV=1 -DNMULAW=1 16 17# Rather than our usual WARNS=4, we need to use 3, since there are a 18# lot of signed-vs-unsigned compares 19 20WARNS= 3 21 22.include <bsd.kmodule.mk> 23