From: Ben Laurie Date: Sat, 6 Apr 2013 14:17:30 +0000 (+0100) Subject: Helper scripts for one makefile build. X-Git-Tag: master-pre-reformat~1286 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9fc3ebda13af72a9250814aad70e0b09d7b24af1;p=thirdparty%2Fopenssl.git Helper scripts for one makefile build. --- diff --git a/GitConfigure b/GitConfigure new file mode 100755 index 00000000000..bbab33ebc59 --- /dev/null +++ b/GitConfigure @@ -0,0 +1,8 @@ +#!/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 -f makefile.$BRANCH init diff --git a/GitMake b/GitMake new file mode 100644 index 00000000000..47beffd6bc1 --- /dev/null +++ b/GitMake @@ -0,0 +1,5 @@ +#!/bin/sh + +BRANCH=`git rev-parse --abbrev-ref HEAD` + +make -f makefile.$BRANCH $@