diff options
author | Alexandre Ratchov <ratchov@cvs.openbsd.org> | 2015-01-21 08:43:56 +0000 |
---|---|---|
committer | Alexandre Ratchov <ratchov@cvs.openbsd.org> | 2015-01-21 08:43:56 +0000 |
commit | d904fb356fc0d4cf25a699fa0757fb1ca22b8b74 (patch) | |
tree | d3e566f1b8a0d0c596d02215f027953d29dd377a /usr.bin/aucat/Makefile | |
parent | 6940a6bb6b4138cdf3ab0376eb8cd926b8637d3b (diff) |
Simplify internals and rewrite file header parsing code:
- remove -M, -t, -w, -C, -x flags that don't make sense anymore
- make "-j off" the default (sndiod already does the job)
- don't limit the number of played/recorded files.
- add support for floating-point encoded files.
- add support for apple .aiff and sun/next .au files
Diffstat (limited to 'usr.bin/aucat/Makefile')
-rw-r--r-- | usr.bin/aucat/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/aucat/Makefile b/usr.bin/aucat/Makefile index 2d35539aa2a..7f4e336a3f8 100644 --- a/usr.bin/aucat/Makefile +++ b/usr.bin/aucat/Makefile @@ -1,8 +1,7 @@ -# $OpenBSD: Makefile,v 1.21 2013/11/21 08:15:46 ratchov Exp $ +# $OpenBSD: Makefile,v 1.22 2015/01/21 08:43:55 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 +SRCS= abuf.c afile.c aucat.c dsp.c utils.c MAN= aucat.1 CFLAGS+=-DDEBUG -I${.CURDIR}/../../lib/libsndio COPTS+= -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wundef |