mirror of
				https://github.com/alsa-project/alsa-tools.git
				synced 2025-11-03 09:01:51 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
	
		
			621 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
	
		
			621 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
if test "x$AUTOMAKE_DIR" = "x"; then
 | 
						|
  if test -d /usr/local/share/automake; then
 | 
						|
    AUTOMAKE_DIR=/usr/local/share/automake
 | 
						|
  fi
 | 
						|
  if test -d /usr/share/automake; then
 | 
						|
    AUTOMAKE_DIR="/usr/share/automake"
 | 
						|
  fi
 | 
						|
fi
 | 
						|
 | 
						|
for f in install-sh mkinstalldirs missing; do
 | 
						|
  cp -av $AUTOMAKE_DIR/$f . || exit 1
 | 
						|
done
 | 
						|
 | 
						|
aclocal $ACLOCAL_FLAGS || exit 1
 | 
						|
automake --foreign --add-missing --copy || exit 1
 | 
						|
touch depcomp || exit 1
 | 
						|
autoconf || exit 1
 | 
						|
export CFLAGS='-O2 -Wall -pipe -g'
 | 
						|
echo "CFLAGS=$CFLAGS"
 | 
						|
echo "./configure $@"
 | 
						|
./configure $@ || exit 1
 | 
						|
unset CFLAGS
 | 
						|
if [ -z "$GITCOMPILE_NO_MAKE" ]; then
 | 
						|
  make || exit 1
 | 
						|
fi
 |