7 lines
134 B
Bash
Executable file
7 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 $@
|