default_pre_build  &&
cd $SOURCE_DIRECTORY  &&
cp $SCRIPT_DIRECTORY/Makefil* . &&

# Use Makefile for the faster asm routines, and
# Makefile_plain_C for the C version without asm.
# Anything other than ia32 must use the C version, and the user may
# choose ASM=n in CONFIGURE to force the usage of the C version.
if [[ ! ${SMGL_COMPAT_ARCHS[1]} == "ia32" ]]  ||
   [[ $ASM == "n" ]]
then
    mv Makefile_plain_C Makefile
fi
