mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-10-31 22:25:34 -04:00
- added getopt_long to parse the command line options - added -D (--device) option - added -q (--quiet) option - added -I (--iec958) option - added AC3 to IEC958 encapsulation code (not tested) - addec xrun detection and restart
19 lines
439 B
Makefile
19 lines
439 B
Makefile
# # Process this file with automake to produce Makefile.in.
|
|
AUTOMAKE_OPTIONS = 1.3 foreign
|
|
|
|
CFLAGS = -Wall -Werror -O3 -g
|
|
|
|
bin_PROGRAMS = ac3dec
|
|
|
|
ac3dec_LDADD= -L./libac3 -lac3
|
|
|
|
noinst_HEADERS = output.h
|
|
ac3dec_SOURCES = ac3dec.c output.c ac3spdif.c
|
|
ac3dec_DEPENDENCIES = libac3/libac3.a
|
|
|
|
|
|
EXTRA_DIST = README Changelog TODO plot_spectrum.m autogen.sh\
|
|
output_linux.c output_irix.c output_solaris.c
|
|
|
|
SUBDIRS = libac3 tools test .
|
|
|