Merge branch 'master' of upstream

This commit is contained in:
Takashi Iwai 2008-10-24 09:26:20 +02:00
commit 3941d472b2
37 changed files with 239 additions and 145 deletions

View file

@ -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 .

View file

@ -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