X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fcic_proof_checking%2FMakefile;h=530f426405e1b9d35c8a6989a9c0101c5d588cf3;hb=f981a524748846acc29b76b6e616af110b4ee13d;hp=c8828a22476267d1fb6a4ceb8c8c54b2e61c3fe6;hpb=cbd78f48f8aa055e2d66922291717842d84383d1;p=helm.git diff --git a/helm/ocaml/cic_proof_checking/Makefile b/helm/ocaml/cic_proof_checking/Makefile index c8828a224..530f42640 100644 --- a/helm/ocaml/cic_proof_checking/Makefile +++ b/helm/ocaml/cic_proof_checking/Makefile @@ -8,14 +8,15 @@ REDUCTION_IMPLEMENTATION = cicReductionMachine.ml INTERFACE_FILES = \ cicLogger.mli \ cicEnvironment.mli \ - cicUnivUtils.mli \ cicPp.mli \ + cicUnivUtils.mli \ cicSubstitution.mli \ cicMiniReduction.mli \ - cicReductionNaif.mli \ cicReduction.mli \ cicTypeChecker.mli \ - cicElim.mli + freshNamesGenerator.mli \ + cicElim.mli \ + cicRecord.mli IMPLEMENTATION_FILES = $(INTERFACE_FILES:%.mli=%.ml) # Metadata tools only need zeta-reduction @@ -26,11 +27,15 @@ EXTRA_OBJECTS_TO_CLEAN = include ../Makefile.common -cicReduction.ml: $(REDUCTION_IMPLEMENTATION) - if ! [ -f $@ ]; then \ - echo "Using $< for $@"; \ - ln -s $< $@; \ - else \ - true; \ - fi +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