Added support for Ninja

This commit is contained in:
Anthony Scemama 2015-05-28 14:00:30 +02:00
parent a823ea208e
commit 1ca62e5352
4 changed files with 14 additions and 1 deletions

View File

@ -62,6 +62,17 @@ if [[ "$PYTHON" = no ]] ; then
AC_MSG_ERROR([Please install Python.])
fi
# Test Ninja
# -----------
if [[ -z "$NINJA" ]] ; then
AC_CHECK_PROG([NINJA],[ninja],[yes],[no])
if [[ "$NINJA" = no ]] ; then
NINJA=
fi
fi
AC_SUBST[[NINJA]]
# Test AR
# -------

View File

@ -3,3 +3,4 @@ FC = @FC@ -fPIC
FCFLAGS= @FCFLAGS@
RANLIB = @RANLIB@
AR = @AR@
NINJA = @NINJA@

View File

@ -27,6 +27,7 @@ DEFAULT_TARGET: python
../make.config:
make -C .. make.config
include ../make.config
export
include irpf90.make

View File

@ -1 +1 @@
VERSION=1.2.1
VERSION=1.2.2