mirror of
https://gitlab.com/scemama/QCaml.git
synced 2024-11-06 22:23:42 +01:00
Fixed makefile for doc
This commit is contained in:
parent
de9ed73735
commit
c8c00e1cf9
1
.merlin
1
.merlin
@ -2,6 +2,7 @@ PKG str unix bigarray lacaml
|
||||
S .
|
||||
S Test
|
||||
S Nuclei
|
||||
S Parallel
|
||||
S CI
|
||||
S Utils
|
||||
S Basis
|
||||
|
@ -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
4
configure
vendored
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user