mirror of
				https://github.com/coop-deluxe/sm64coopdx.git
				synced 2025-10-30 08:01:01 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			245 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			245 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
set -e
 | 
						|
 | 
						|
make RENDER_API=GL WINDOW_API=SDL1 AUDIO_API=SDL1 CONTROLLER_API=SDL1 DEBUG=1 DEVELOPMENT=1 -j
 | 
						|
 | 
						|
# find file
 | 
						|
FILE=./build/us_pc/sm64.us.f3dex2e.exe
 | 
						|
if [ ! -f "$FILE" ]; then
 | 
						|
    FILE=./build/us_pc/sm64.us.f3dex2e
 | 
						|
fi
 | 
						|
 | 
						|
$FILE &
 |