diff --git a/configure b/configure deleted file mode 100755 index 9fc9d67..0000000 --- a/configure +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh - -check_makedeps() -{ - echo "Checking makedeps" - - gcc_includes=$(stat $PREFIX/bin/gcc) - clang_includes=$(stat $PREFIX/bin/clang) - make_includes=$(stat $PREFIX/bin/make) - - if [ "$gcc_includes" == 1 ]; then - - if [ "$clang_includes" == 1 ]; then - - echo "clang not found, cannot build Fusion" - echo "Install clang to install" - - exit 1 - else - echo "clang is installed. Build with clang using 'make clang'" - fi - else - echo "gcc is installed. Build with gcc using 'make'" - fi - - if [ "$make_includes" == 1 ]; then - echo "make not found, cannot build Fusion" - echo "Install make to install" - - exit 1 - fi - - echo "make is installed" -} - -check_makedeps \ No newline at end of file