2013-04-06 14:17:30 +00:00
|
|
|
#!/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
|
2013-10-20 20:54:46 +00:00
|
|
|
MAKE=make
|
|
|
|
which bsdmake > /dev/null && MAKE=bsdmake
|
|
|
|
$MAKE -f makefile.$BRANCH init
|