2018-11-28 02:48:07 +01:00
|
|
|
export IMAKECPP="@tradcpp@/bin/tradcpp"
|
|
|
|
|
|
|
|
imakeConfigurePhase() {
|
|
|
|
runHook preConfigure
|
|
|
|
|
|
|
|
echoCmd 'configuring with imake'
|
|
|
|
|
|
|
|
if [ -z "${imakefile:-}" -a ! -e Imakefile ]; then
|
|
|
|
echo "no Imakefile, doing nothing"
|
|
|
|
else
|
|
|
|
xmkmf -a
|
|
|
|
fi
|
|
|
|
|
|
|
|
runHook postConfigure
|
|
|
|
}
|
|
|
|
|
2019-10-31 18:59:18 +01:00
|
|
|
if [ -z "${dontUseImakeConfigure-}" -a -z "${configurePhase-}" ]; then
|
2018-11-28 02:48:07 +01:00
|
|
|
configurePhase=imakeConfigurePhase
|
|
|
|
fi
|