diff --git a/configure.meson b/configure.meson deleted file mode 100755 index b0bf884..0000000 --- a/configure.meson +++ /dev/null @@ -1,20 +0,0 @@ -#!/usr/bin/env bash - -if [ -z "$1" ] ; then - BLD="build" - BLDH="build" -else - BLDH=${!#} -fi - -TOP=$(dirname "$0") - -meson setup \ - --cross-file $TOP/src/toolchain.ini \ - $* $BLD $TOP -[ "$?" = "0" ] || exit 1 - -echo -echo "Done configure" -echo "Now run \"meson compile --verbose -C $BLDH\" to build" -echo "After that you can do \"meson install -C $BLDH\" to install"