10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-10-04 23:36:08 +02:00

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 .
S Test S Test
S Nuclei S Nuclei
S Parallel
S CI S CI
S Utils S Utils
S Basis 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 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
View File

@ -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