mirror of
				https://github.com/alsa-project/alsa-lib.git
				synced 2025-10-29 05:40:25 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			370 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			370 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| touch ltconfig
 | |
| libtoolize --force --copy --automake
 | |
| aclocal $ACLOCAL_FLAGS
 | |
| autoheader
 | |
| automake --foreign --copy --add-missing
 | |
| touch depcomp		# seems to be missing for old automake
 | |
| autoconf
 | |
| export CFLAGS='-O2 -Wall -W -pipe -g'
 | |
| echo "CFLAGS=$CFLAGS"
 | |
| echo "./configure $@"
 | |
| ./configure $@ || exit 1
 | |
| unset CFLAGS
 | |
| if [ -z "$CVSCOMPILE_NO_MAKE" ]; then
 | |
|   make
 | |
| fi
 | 
