10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-21 12:42:13 +02:00
quantum_package/ocaml/Makefile

76 lines
2.0 KiB
Makefile
Raw Normal View History

2015-01-06 19:12:17 +01:00
.NOPARALLEL:
2015-03-26 01:33:32 +01:00
# Check if QPACKAGE_ROOT is defined
2014-08-24 20:00:26 +02:00
ifndef QPACKAGE_ROOT
$(info -------------------- Error --------------------)
$(info QPACKAGE_ROOT undefined. Source the quantum_package.rc script)
$(info -----------------------------------------------)
$(error )
endif
2014-08-26 15:31:16 +02:00
2014-08-13 17:54:32 +02:00
LIBS=
PKGS=
2014-11-12 17:17:44 +01:00
OCAMLCFLAGS="-g -warn-error A"
OCAMLBUILD=ocamlbuild -j 0 -syntax camlp4o -cflags $(OCAMLCFLAGS) -lflags $(OCAMLCFLAGS)
MLFILES=$(wildcard *.ml) ezfio.ml Qptypes.ml
2014-08-24 20:00:26 +02:00
MLIFILES=$(wildcard *.mli)
ALL_TESTS=$(patsubst %.ml,%.byte,$(wildcard test_*.ml))
ALL_EXE=$(patsubst %.ml,%.native,$(wildcard qp_*.ml))
2014-08-13 17:54:32 +02:00
2014-09-17 00:39:21 +02:00
.PHONY: executables default
2014-08-13 17:54:32 +02:00
default: $(ALL_TESTS) $(ALL_EXE) .gitignore
.gitignore: $(MLFILES)
@for i in .gitignore ezfio.ml Qptypes.ml qptypes_generator.byte _build $(ALL_EXE) $(ALL_TESTS) \
$(patsubst %.ml,%,$(wildcard test_*.ml)) $(patsubst %.ml,%,$(wildcard qp_*.ml)) ; do \
echo $$i ; \
done >> .gitignore
2014-08-26 15:31:16 +02:00
2015-03-26 01:33:32 +01:00
executables: $(QPACKAGE_ROOT)/data/executables
2015-03-26 02:03:01 +01:00
$(QPACKAGE_ROOT)/data/executables:
2015-03-26 01:33:32 +01:00
$(QPACKAGE_ROOT)/scripts/create_executables_list.sh
2014-08-13 17:54:32 +02:00
external_libs:
opam install cryptokit core
2014-10-27 01:23:04 +01:00
qpackage.odocl: $(MLIFILES)
ls $(MLIFILES) | sed "s/\.mli//" > qpackage.odocl
doc: qpackage.odocl
$(OCAMLBUILD) qpackage.docdir/index.html -use-ocamlfind $(PKGS)
2014-10-27 01:14:18 +01:00
2014-08-24 20:00:26 +02:00
%.inferred.mli: $(MLFILES)
2014-09-17 23:47:13 +02:00
$(OCAMLBUILD) $*.inferred.mli -use-ocamlfind $(PKGS)
mv _build/$*.inferred.mli .
2014-08-13 17:54:32 +02:00
2014-08-24 20:00:26 +02:00
%.byte: $(MLFILES) $(MLIFILES)
rm -f -- $*
2014-08-13 17:54:32 +02:00
$(OCAMLBUILD) $*.byte -use-ocamlfind $(PKGS)
2014-10-07 19:33:11 +02:00
ln -s $*.byte $*
2014-08-13 17:54:32 +02:00
2015-03-26 23:38:40 +01:00
qp_run.native: $(MLFILES) $(MLIFILES) executables
%.native: $(MLFILES) $(MLIFILES)
rm -f -- $*
2014-08-13 17:54:32 +02:00
$(OCAMLBUILD) $*.native -use-ocamlfind $(PKGS)
ln -s $*.native $*
2014-08-13 17:54:32 +02:00
2014-08-24 20:00:26 +02:00
ezfio.ml: ${QPACKAGE_ROOT}/EZFIO/Ocaml/ezfio.ml
cp ${QPACKAGE_ROOT}/EZFIO/Ocaml/ezfio.ml .
2014-08-26 15:31:16 +02:00
qptypes_generator.byte: qptypes_generator.ml
$(OCAMLBUILD) qptypes_generator.byte -use-ocamlfind
2014-09-17 00:39:21 +02:00
Qptypes.ml: qptypes_generator.byte
./qptypes_generator.byte > Qptypes.ml
2014-08-26 15:31:16 +02:00
${QPACKAGE_ROOT}/EZFIO/Ocaml/ezfio.ml:
2014-08-24 20:00:26 +02:00
$(MAKE) -C ${QPACKAGE_ROOT}/src ezfio
2014-08-13 17:54:32 +02:00
clean:
rm -rf _build Qptypes.ml $(ALL_EXE) $(ALL_TESTS)