3f4db5ffea
this doesn't process several potential result that netbsd does not output on /dev/music, and should be largely complete for our current sequencer(4).
16 lines
317 B
Makefile
16 lines
317 B
Makefile
# $NetBSD: Makefile,v 1.1 2014/12/30 04:14:25 mrg Exp $
|
|
|
|
PROG= midirecord
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
LIBAUDIO != cd ${.CURDIR}/../audio/common && ${PRINTOBJDIR}
|
|
CPPFLAGS+=-I${.CURDIR}/../audio/common
|
|
DPADD+= ${LIBAUDIO}/libaudio.a
|
|
LDADD+= -L${LIBAUDIO} -laudio
|
|
|
|
DPADD+= ${LIBUTIL}
|
|
LDADD+= -lutil
|
|
|
|
.include <bsd.prog.mk>
|