1export IMAKECPP="@tradcpp@/bin/tradcpp"
2
3imakeConfigurePhase() {
4 runHook preConfigure
5
6 echoCmd 'configuring with imake'
7
8 if [ -z "${imakefile:-}" -a ! -e Imakefile ]; then
9 echo "no Imakefile, doing nothing"
10 else
11 xmkmf -a
12 fi
13
14 runHook postConfigure
15}
16
17if [ -z "${dontUseImakeConfigure-}" -a -z "${configurePhase-}" ]; then
18 configurePhase=imakeConfigurePhase
19fi