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 .
|
||||||
S Test
|
S Test
|
||||||
S Nuclei
|
S Nuclei
|
||||||
|
S Parallel
|
||||||
S CI
|
S CI
|
||||||
S Utils
|
S Utils
|
||||||
S Basis
|
S Basis
|
||||||
|
@ -7,8 +7,8 @@ OCAMLBUILD=ocamlbuild -j 0 -cflags $(ocamlcflags) -lflags $(ocamllflags) $(ocaml
|
|||||||
|
|
||||||
MLLFILES=$(wildcard */*.mll) $(wildcard *.mll) Utils/math_functions.c
|
MLLFILES=$(wildcard */*.mll) $(wildcard *.mll) Utils/math_functions.c
|
||||||
MLYFILES=$(wildcard */*.mly) $(wildcard *.mly)
|
MLYFILES=$(wildcard */*.mly) $(wildcard *.mly)
|
||||||
MLFILES= $(wildcard */*.ml) $(wildcard *.ml)
|
MLFILES= $(filter-out $(wildcard Parallel_*/*), $(wildcard */*.ml) $(wildcard *.ml) )
|
||||||
MLIFILES=$(wildcard */*.mli) $(wildcard *.mli)
|
MLIFILES=$(filter-out $(wildcard Parallel_*/*), $(wildcard */*.mli) $(wildcard *.mli) )
|
||||||
|
|
||||||
ALL_NATIVE=$(patsubst %.ml,%.native,$(wildcard run_*.ml))
|
ALL_NATIVE=$(patsubst %.ml,%.native,$(wildcard run_*.ml))
|
||||||
ALL_BYTE=$(patsubst %.ml,%.byte,$(wildcard run_*.ml))
|
ALL_BYTE=$(patsubst %.ml,%.byte,$(wildcard run_*.ml))
|
||||||
|
4
configure
vendored
4
configure
vendored
@ -77,7 +77,7 @@ while : ; do
|
|||||||
shift;;
|
shift;;
|
||||||
-mpi|--mpi)
|
-mpi|--mpi)
|
||||||
mpi='-tag "package(mpi)"';;
|
mpi='-tag "package(mpi)"';;
|
||||||
-help|--help)
|
-h|-help|--help)
|
||||||
help;;
|
help;;
|
||||||
*)
|
*)
|
||||||
echo "Unknown option $1, try -help"
|
echo "Unknown option $1, try -help"
|
||||||
@ -87,7 +87,7 @@ while : ; do
|
|||||||
done
|
done
|
||||||
|
|
||||||
rm -f Parallel
|
rm -f Parallel
|
||||||
if [[ -n $mpi ]] ; then
|
if [ "x.$mpi" != "x." ] ; then
|
||||||
ln -s Parallel_mpi Parallel
|
ln -s Parallel_mpi Parallel
|
||||||
else
|
else
|
||||||
ln -s Parallel_serial Parallel
|
ln -s Parallel_serial Parallel
|
||||||
|
Loading…
Reference in New Issue
Block a user