3 UTILITIES = create_environment parse_library list_uris test_library
4 UTILITIES_OPT = $(patsubst %,%.opt,$(UTILITIES))
5 LINKOPTS = -linkpkg -rectypes -thread
6 LIBS = helm-cic_proof_checking
7 OCAMLC = $(OCAMLFIND) ocamlc $(LINKOPTS) -package $(LIBS)
8 OCAMLOPT = $(OCAMLFIND) opt $(LINKOPTS) -package $(LIBS)
15 $(H)$(OCAMLC) -o $@ $<
17 $(H)echo " OCAMLOPT $<"
18 $(H)$(OCAMLOPT) -o $@ $<
20 rm -f $(UTILITIES) $(UTILITIES_OPT) *.cm[iox] *.o
23 $(H)ocamldep extractor.ml extractor_manager.ml > .depend
25 $(H)echo " OCAMLDEP -native"
26 $(H)ocamldep -native extractor.ml extractor_manager.ml > .depend.opt
28 ifeq ($(MAKECMDGOALS),)
32 ifeq ($(MAKECMDGOALS), all)
36 ifeq ($(MAKECMDGOALS), opt)
40 include ../../../Makefile.defs