What's cooking (2011/11 #02)
[alt-git.git] / Make
blob836a581a253ed36242668e44f8a05bc5b41209f3
1 #!/bin/sh
3 if test -z "$GIT"
4 then
5 case "$(git version 2>/dev/null)" in
6 "git version"*)
7 GIT=git ;;
8 *)
9 echo >&2 "No git to bootstrap"
10 exit 1 ;;
11 esac
14 inst_prefix=$(
15 IFS=:
16 for p in $PATH
18 probed=${p%/git-active/bin}
19 if test "$probed" != "$p"
20 then
21 echo "$probed"
22 exit
24 done
25 echo $HOME
28 LANG=C
29 old_style_def_fix=b79d18c92d9f4841a6a1a29b7b2373a8ff9871e1
31 : ${O=-O2}
33 for cv in PYTHON_PATH=python TCL_PATH=tclsh TCLTKPATH=wish
35 cmd=${cv#*=}
36 var=${cv%=*}
37 eval $(
38 if test -f "/usr/bin/$cmd"
39 then
40 break
42 for p in /usr/bin /usr/local/bin
44 if test -f "$p/$cmd"
45 then
46 echo "$var=$p/$cmd; export $var"
47 break
49 found=$(find "$p/$cmd"* -type f 2>/dev/null | head -n 1)
50 if test -f "$found"
51 then
52 echo "$var=$found; export $var"
53 break
55 done
57 done
59 Wall='-Wall -Wdeclaration-after-statement' tests= jobs= skip=
60 case `uname` in
61 OpenBSD)
62 NEEDS_CRYPTO_WITH_SSL=YesPlease ; export NEEDS_CRYPTO_WITH_SSL
63 skip="t9200 t9502"
64 SHELL_PATH=/usr/local/bin/bash; export SHELL_PATH
65 NO_PEDANTIC=CannotDo NO_JOBS=CannotDo
66 Wall=
68 FreeBSD)
69 OLD_ICONV=YesPlease; export OLD_ICONV
70 skip="t5560"
72 SunOS)
73 NEEDS_CRYPTO_WITH_SSL=YesPlease ; export NEEDS_CRYPTO_WITH_SSL
74 NO_PEDANTIC=CannotDo Wall=
76 esac
78 while case $# in 0) break ;; esac
79 do
80 case "$1" in
81 -pedantic | --pedantic)
82 o= &&
83 rev=$($GIT rev-parse HEAD) &&
84 case "$($GIT merge-base "$old_style_def_fix" "$rev")" in
85 $old_style_def_fix)
86 o=-Wold-style-definition ;;
87 esac
88 case "$NO_PEDANTIC" in
89 ?*) ;;
90 '')
91 O="$O -Werror $o -std=c99 -Wno-pointer-to-int-cast"
92 O="$O -Wpointer-arith -Woverflow -Wunused"
94 esac
95 # -Wvla
96 # O="$O -fwrapv -fno-strict-overflow"
98 -j*)
99 case "$NO_JOBS" in
100 ?*) jobs= ;;
101 '') jobs=$1 ;;
102 esac
104 -loose | --loose)
105 Wall=
107 --locale=*)
108 LANG=${1#*=}
110 --test=*)
111 tests=$(
112 cd t &&
113 for t in ${1#*=}
115 eval echo "t$t-*.sh"
116 done | tr '\012' ' '
120 shift
121 break
124 echo >&2 "Eh $1?"
125 exit 1
128 break
130 esac
131 shift
132 done
134 if test -z "$tests" && test -n "$skip"
135 then
136 : GIT_SKIP_TESTS="${GIT_SKIP_TESTS:-$skip}"
139 LC_ALL=$LANG
140 export LANG LC_ALL
142 head=`$GIT symbolic-ref HEAD 2>/dev/null` &&
143 branch=`expr "$head" : 'refs/heads/\(.*\)'` || branch=detached
145 case "$branch" in
146 next | maint | master | pu | jch)
147 prefix="$inst_prefix/git-$branch"
149 snap)
150 v=`$GIT describe HEAD`
151 expr "$v" : '.*-g[0-9a-f]*$' >/dev/null && {
152 echo >&2 "You are on 'snap' but $v is not an official version."
153 exit 1
155 prefix="$inst_prefix/git-snap-$v"
158 prefix="$inst_prefix/git-test" ;;
159 esac
160 d="prefix=$prefix"
162 sh -c 'git describe --abbrev=4 HEAD' >/dev/null 2>&1 || {
163 $GIT describe --abbrev=4 HEAD | sed -e 's/-/./g' >version
166 d="$d "'
167 MAN_BASE_URL="http://www.kernel.org/pub/software/scm/git/docs/"
168 ASCIIDOC_NO_ROFF=YesPlease
169 ASCIIDOC8=YesPlease
170 BLK_SHA1=YesPlease
171 GNU_ROFF=YesPlease'
173 # Platform hack
174 if test -z "${make:+set}" && {
175 test -x /usr/local/bin/gmake ||
176 test -x /usr/bin/gmake
178 then
179 make=gmake
181 if test -f /bin/ginstall
182 then
183 set INSTALL=ginstall "$@"
186 CFLAGS="$O $Wall -g"
187 OK_TO_USE_CFLAGS=Yes
188 if test -n "${NO_CFLAGS+set}"
189 then
190 unset OK_TO_USE_CFLAGS
193 ${make-make} $d \
194 ETC_GITCONFIG=$prefix/etc/gitconfig \
195 ${OK_TO_USE_CFLAGS+"CFLAGS=$CFLAGS"} \
196 ${tests:+"T=$tests"} \
197 $jobs \
198 "$@"
199 status=$?
200 rm -f version
201 exit $status