8 lines
		
	
	
		
			134 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			134 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
BRANCH=`git rev-parse --abbrev-ref HEAD`
 | 
						|
 | 
						|
MAKE=make
 | 
						|
which bsdmake > /dev/null && MAKE=bsdmake
 | 
						|
$MAKE -f makefile.$BRANCH $@
 |