summaryrefslogtreecommitdiff
path: root/usr.bin/aucat/Makefile
diff options
context:
space:
mode:
authorAlexandre Ratchov <ratchov@cvs.openbsd.org>2013-11-19 07:24:58 +0000
committerAlexandre Ratchov <ratchov@cvs.openbsd.org>2013-11-19 07:24:58 +0000
commit955de0f441f43b5980b407e6576b3ec9e9aa464f (patch)
tree16039ea667585e0a8ddb18b8b1da38f34588e05a /usr.bin/aucat/Makefile
parent8109c8552f994f7a1b51923cb71d027313a3d073 (diff)
move -Wxxx flags from CFALGS to COPTS
suggested by deraadt
Diffstat (limited to 'usr.bin/aucat/Makefile')
-rw-r--r--usr.bin/aucat/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/aucat/Makefile b/usr.bin/aucat/Makefile
index c8606efd625..c3588efd647 100644
--- a/usr.bin/aucat/Makefile
+++ b/usr.bin/aucat/Makefile
@@ -1,9 +1,10 @@
-# $OpenBSD: Makefile,v 1.19 2013/11/12 06:47:34 ratchov Exp $
+# $OpenBSD: Makefile,v 1.20 2013/11/19 07:24:57 ratchov Exp $
PROG= aucat
SRCS= aucat.c abuf.c aparams.c aproc.c dev.c midi.c file.c headers.c \
siofile.c miofile.c pipe.c wav.c dbg.c
MAN= aucat.1
-CFLAGS+= -Wall -Wstrict-prototypes -Wundef -DDEBUG -I${.CURDIR}/../../lib/libsndio
+CFLAGS+=-DDEBUG -I${.CURDIR}/../../lib/libsndio
+COPTS+= -Wall -Wstrict-prototypes -Wpointer-arith -Wundef
LDADD+= -lsndio
.include <bsd.prog.mk>