mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-10-31 22:25:34 -04:00
Merge branch 'master' of upstream
This commit is contained in:
commit
3941d472b2
37 changed files with 239 additions and 145 deletions
|
|
@ -10,7 +10,8 @@ ac3dec_SOURCES = ac3dec.c output.c ac3spdif.c
|
|||
ac3dec_DEPENDENCIES = libac3/libac3.a
|
||||
|
||||
|
||||
EXTRA_DIST = README Changelog TODO plot_spectrum.m autogen.sh depcomp
|
||||
EXTRA_DIST = gitcompile README Changelog TODO plot_spectrum.m autogen.sh \
|
||||
depcomp
|
||||
|
||||
SUBDIRS = libac3 tools test .
|
||||
|
||||
|
|
|
|||
|
|
@ -1,9 +1,11 @@
|
|||
#!/bin/sh
|
||||
|
||||
aclocal $ACLOCAL_FLAGS
|
||||
autoheader
|
||||
automake --add-missing --copy --foreign
|
||||
touch depcomp
|
||||
autoconf
|
||||
./configure $*
|
||||
make
|
||||
aclocal $ACLOCAL_FLAGS || exit 1
|
||||
autoheader || exit 1
|
||||
automake --add-missing --copy --foreign || exit 1
|
||||
touch depcomp || exit 1
|
||||
autoconf || exit 1
|
||||
./configure $* || exit 1
|
||||
if [ -z "$GITCOMPILE_NO_MAKE" ]; then
|
||||
make || exit 1
|
||||
fi
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue