summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xGitConfigure8
-rw-r--r--GitMake5
2 files changed, 13 insertions, 0 deletions
diff --git a/GitConfigure b/GitConfigure
new file mode 100755
index 0000000000..bbab33ebc5
--- /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 0000000000..47beffd6bc
--- /dev/null
+++ b/GitMake
@@ -0,0 +1,5 @@
+#!/bin/sh
+
+BRANCH=`git rev-parse --abbrev-ref HEAD`
+
+make -f makefile.$BRANCH $@