isa-l/autogen.sh

18 lines
443 B
Bash
Raw Permalink Normal View History

#!/bin/sh -e
autoreconf --install --symlink -f -Wno-obsolete
libdir() {
echo $(cd $1/$(gcc -print-multi-os-directory); pwd)
}
args="--prefix=/usr --libdir=$(libdir /usr/lib)"
echo
echo "----------------------------------------------------------------"
echo "Initialized build system. For a common configuration please run:"
echo "----------------------------------------------------------------"
echo
echo "./configure $args"
echo