23 lines
507 B
Makefile
23 lines
507 B
Makefile
|
|
ifeq ($(strip ${COVERAGE}),yes)
|
|
COVERAGEPKG := bisect_ppx
|
|
endif
|
|
|
|
INCLUDES = \
|
|
$(patsubst %, -I %, $(SOURCE_DIRECTORIES)) \
|
|
$(patsubst %, -package %, $(PACKAGES)) \
|
|
$(patsubst %, -open %, $(OPENED_MODULES))
|
|
|
|
OCAMLFLAGS = \
|
|
-g -safe-string -bin-annot -w +27-30-40 -short-paths \
|
|
${INCLUDES} \
|
|
${EXTRA_OCAMLFLAGS}
|
|
|
|
OCAMLC = ocamlfind ocamlc
|
|
OCAMLOPT = ocamlfind ocamlopt
|
|
OCAMLMKTOP = ocamlfind ocamlmktop
|
|
OCAMLDEP = ocamlfind ocamldep
|
|
OCAMLRES = ocp-ocamlres
|
|
OCAMLLEX = ocamllex
|
|
MENHIR = menhir
|