mirror of
https://github.com/openssl/openssl.git
synced 2024-11-25 02:53:30 +08:00
11 lines
260 B
Bash
Executable File
11 lines
260 B
Bash
Executable File
#!/bin/sh
|
|
|
|
BRANCH=`git rev-parse --abbrev-ref HEAD`
|
|
|
|
./Configure $@ no-symlinks
|
|
make files
|
|
util/mk1mf.pl OUT=out.$BRANCH TMP=tmp.$BRANCH INC=inc.$BRANCH copy > makefile.$BRANCH
|
|
MAKE=make
|
|
which bsdmake > /dev/null && MAKE=bsdmake
|
|
$MAKE -f makefile.$BRANCH init
|