mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-10-31 22:25:34 -04:00
Initial version
This commit is contained in:
commit
8785f9288e
12 changed files with 2694 additions and 0 deletions
22
envy24control/cvscompile
Normal file
22
envy24control/cvscompile
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
#!/bin/bash
|
||||
|
||||
share=/usr/share/automake/missing
|
||||
|
||||
aclocal $ACLOCAL_FLAGS
|
||||
automake --foreign
|
||||
if [ ! -r install-sh ]; then
|
||||
cp $share/install-sh .
|
||||
fi
|
||||
if [ ! -r mkinstalldirs ]; then
|
||||
cp $share/mkinstalldirs .
|
||||
fi
|
||||
if [ ! -r missing ]; then
|
||||
cp $share/missing .
|
||||
fi
|
||||
autoconf
|
||||
export CFLAGS='-O2 -Wall -pipe -g'
|
||||
echo "CFLAGS=$CFLAGS"
|
||||
echo "./configure $@"
|
||||
./configure $@
|
||||
unset CFLAGS
|
||||
make
|
||||
Loading…
Add table
Add a link
Reference in a new issue