[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / usr.bin / aucat

File: [local] / src / usr.bin / aucat / Makefile (download)

Revision 1.6, Mon Oct 27 18:02:14 2008 UTC (15 years, 7 months ago) by miod
Branch: MAIN
Changes since 1.5: +6 -2 lines

No -Werror on m88k, hairy gcc bug generates false ``variable might be used
uninitialized'' warnings. To be removed when the compiler bug is fixed
eventually.

#	$OpenBSD: Makefile,v 1.6 2008/10/27 18:02:14 miod Exp $

PROG=	aucat
SRCS=	aucat.c abuf.c aparams.c aproc.c dev.c file.c headers.c \
	safile.c sock.c pipe.c listen.c wav.c legacy.c 
CFLAGS+= -DDEBUG -Wall -Wstrict-prototypes -Wundef
# false warnings on 64 bit variables for which no toolchain fix is available yet
.if ${MACHINE_ARCH} != "m88k"
CFLAGS+= -Werror
.endif
LDADD+=	-lsndio
.include <bsd.prog.mk>