Fixed makefile for doc

This commit is contained in:
Anthony Scemama 2019-02-15 11:08:10 +01:00
parent de9ed73735
commit c8c00e1cf9
3 changed files with 5 additions and 4 deletions

View File

@ -2,6 +2,7 @@ PKG str unix bigarray lacaml
S .
S Test
S Nuclei
S Parallel
S CI
S Utils
S Basis

View File

@ -7,8 +7,8 @@ OCAMLBUILD=ocamlbuild -j 0 -cflags $(ocamlcflags) -lflags $(ocamllflags) $(ocaml
MLLFILES=$(wildcard */*.mll) $(wildcard *.mll) Utils/math_functions.c
MLYFILES=$(wildcard */*.mly) $(wildcard *.mly)
MLFILES= $(wildcard */*.ml) $(wildcard *.ml)
MLIFILES=$(wildcard */*.mli) $(wildcard *.mli)
MLFILES= $(filter-out $(wildcard Parallel_*/*), $(wildcard */*.ml) $(wildcard *.ml) )
MLIFILES=$(filter-out $(wildcard Parallel_*/*), $(wildcard */*.mli) $(wildcard *.mli) )
ALL_NATIVE=$(patsubst %.ml,%.native,$(wildcard run_*.ml))
ALL_BYTE=$(patsubst %.ml,%.byte,$(wildcard run_*.ml))

4
configure vendored
View File

@ -77,7 +77,7 @@ while : ; do
shift;;
-mpi|--mpi)
mpi='-tag "package(mpi)"';;
-help|--help)
-h|-help|--help)
help;;
*)
echo "Unknown option $1, try -help"
@ -87,7 +87,7 @@ while : ; do
done
rm -f Parallel
if [[ -n $mpi ]] ; then
if [ "x.$mpi" != "x." ] ; then
ln -s Parallel_mpi Parallel
else
ln -s Parallel_serial Parallel