mirror of
https://github.com/openssl/openssl.git
synced 2024-11-23 18:13:39 +08:00
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 $@
|