X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;ds=sidebyside;f=helm%2Focaml%2Fcic_proof_checking%2FMakefile;h=28462e58e5140d8f98ac0c1c1c3abedbce79ef50;hb=6c43a7f440daf19e2475b7eabd20456bdb0e9f76;hp=4d56f5b2599e3e49de3fd926302c2360ae9f0ffc;hpb=58bd1746df1d9dc734f8ac75220d25997c09bed1;p=helm.git diff --git a/helm/ocaml/cic_proof_checking/Makefile b/helm/ocaml/cic_proof_checking/Makefile index 4d56f5b25..28462e58e 100644 --- a/helm/ocaml/cic_proof_checking/Makefile +++ b/helm/ocaml/cic_proof_checking/Makefile @@ -1,6 +1,5 @@ PACKAGE = cic_proof_checking -REQUIRES = helm-cic helm-logger helm-getter helm-xml pxp PREDICATES = REDUCTION_IMPLEMENTATION = cicReductionMachine.ml @@ -12,10 +11,10 @@ INTERFACE_FILES = \ cicUnivUtils.mli \ cicSubstitution.mli \ cicMiniReduction.mli \ - cicReductionNaif.mli \ cicReduction.mli \ cicTypeChecker.mli \ - cicElim.mli + freshNamesGenerator.mli \ + $(NULL) IMPLEMENTATION_FILES = $(INTERFACE_FILES:%.mli=%.ml) # Metadata tools only need zeta-reduction @@ -26,11 +25,18 @@ EXTRA_OBJECTS_TO_CLEAN = include ../Makefile.common -cicReduction.ml: $(REDUCTION_IMPLEMENTATION) - if ! [ -f $@ ]; then \ - echo "Using $< for $@"; \ - ln -s $< $@; \ - else \ - true; \ - fi +cicReduction.cmo: OCAMLOPTIONS+=-rectypes +cicReduction.cmx: OCAMLOPTIONS+=-rectypes + +all: all_utilities +opt: opt_utilities + +all_utilities: + $(MAKE) -C utilities/ all +opt_utilities: + $(MAKE) -C utilities/ opt + +clean: clean_utilities +clean_utilities: + $(MAKE) -C utilities/ clean