9 lines
		
	
	
		
			150 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			150 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
cd `dirname $0`/..
 | 
						|
 | 
						|
mkdir -p build_mips
 | 
						|
cd build_mips
 | 
						|
 | 
						|
cmake -DANDROID_ABI=mips -DCMAKE_TOOLCHAIN_FILE=../android.toolchain.cmake $@ ../..
 | 
						|
 |