X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fcic_proof_checking%2FMakefile;h=3fbe90ddb920a4be43166c8a8dbcb6f88f76a01e;hb=7d7f729471b4d5ebafa1b915096974e726cc13c6;hp=591446ccd548b33a098d9a3dba2c7034c856571f;hpb=0054d117ebed7924a96bcaadc9bcbbef9d372938;p=helm.git diff --git a/helm/ocaml/cic_proof_checking/Makefile b/helm/ocaml/cic_proof_checking/Makefile index 591446ccd..3fbe90ddb 100644 --- a/helm/ocaml/cic_proof_checking/Makefile +++ b/helm/ocaml/cic_proof_checking/Makefile @@ -1,16 +1,39 @@ + PACKAGE = cic_proof_checking -REQUIRES = helm-cic PREDICATES = -INTERFACE_FILES = cicSubstitution.mli cicEnvironment.mli cicPp.mli \ - cicMiniReduction.mli cicReductionNaif.mli cicReduction.mli cicReductionMachine.mli cicTypeChecker.mli \ - cicCooking.mli +REDUCTION_IMPLEMENTATION = cicReductionMachine.ml + +INTERFACE_FILES = \ + cicLogger.mli \ + cicEnvironment.mli \ + cicPp.mli \ + cicUnivUtils.mli \ + cicSubstitution.mli \ + cicMiniReduction.mli \ + cicReduction.mli \ + cicTypeChecker.mli \ + freshNamesGenerator.mli \ + $(NULL) IMPLEMENTATION_FILES = $(INTERFACE_FILES:%.mli=%.ml) # Metadata tools only need zeta-reduction EXTRA_OBJECTS_TO_INSTALL = \ cicSubstitution.cmo cicSubstitution.cmx cicSubstitution.o \ cicMiniReduction.cmo cicMiniReduction.cmx cicMiniReduction.o - +EXTRA_OBJECTS_TO_CLEAN = include ../Makefile.common + +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 +