blob: 2bfe3936c24b34b568162eaf80fea3895f0604fe (
plain)
1
2
3
4
5
6
7
8
9
10
|
# $OpenBSD: Makefile,v 1.5 2016/01/07 07:41:01 ratchov Exp $
PROG= sndiod
SRCS= abuf.c dev.c dsp.c fdpass.c file.c listen.c midi.c miofile.c \
opt.c siofile.c sndiod.c sock.c utils.c
MAN= sndiod.8
CFLAGS+=-DDEBUG -I${.CURDIR}/../../lib/libsndio
COPTS+= -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wundef
LDADD+= -lsndio
.include <bsd.prog.mk>
|