annotate armadillo-2.4.4/configure @ 25:767ab745c582 slimline

Remove files that should not be tracked
author Chris Cannam
date Thu, 10 May 2012 12:03:00 +0100
parents 8b6102e2a9b0
children
rev   line source
max@0 1 #!/bin/sh
max@0 2
max@0 3 ABORT=no
max@0 4
max@0 5 check_cmake()
max@0 6 {
max@0 7 (cmake --version) </dev/null >/dev/null 2>&1 ||
max@0 8 {
max@0 9 echo "error: cmake 2.6 must be present to configure and install Armadillo"
max@0 10 echo ""
max@0 11 echo "cmake might be available as a package for your system,"
max@0 12 echo "or can be downloaded from http://cmake.org"
max@0 13 ABORT=yes
max@0 14 }
max@0 15 }
max@0 16
max@0 17 check_cmake
max@0 18
max@0 19 test "$ABORT" = yes && exit -1
max@0 20
max@0 21 rm -f CMakeCache.txt
max@0 22 cmake .
max@0 23