X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fcic_annotations_cache%2FMakefile;h=f5adf638049c34c512eeabcca913c96bfdb26ff7;hb=0c6a5aadb1a7746681a8e26fc0b009f847c10557;hp=d5abc7bb494a05f2443d64e6546813f513bc0d4b;hpb=5a92117eeff70048d29e91ba24e113155d956e1b;p=helm.git diff --git a/helm/ocaml/cic_annotations_cache/Makefile b/helm/ocaml/cic_annotations_cache/Makefile index d5abc7bb4..f5adf6380 100644 --- a/helm/ocaml/cic_annotations_cache/Makefile +++ b/helm/ocaml/cic_annotations_cache/Makefile @@ -1,36 +1,11 @@ -BIN_DIR = /usr/local/bin -REQUIRES = helm-cic_annotations +PACKAGE = cic_annotations_cache +REQUIRES = helm-cic_annotations helm-getter PREDICATES = -OCAMLOPTIONS = -package "$(REQUIRES)" -predicates "$(PREDICATES)" -OCAMLC = ocamlfind ocamlc $(OCAMLOPTIONS) -OCAMLOPT = ocamlfind ocamlopt $(OCAMLOPTIONS) -OCAMLDEP = ocamldep -all: cicCache.cmo -opt: cicCache.cmx +INTERFACE_FILES = cicCache.mli +IMPLEMENTATION_FILES = $(INTERFACE_FILES:%.mli=%.ml) +EXTRA_OBJECTS_TO_INSTALL = +EXTRA_OBJECTS_TO_CLEAN = -DEPOBJS = cicCache.mli cicCache.ml +include ../Makefile.common -depend: - $(OCAMLDEP) $(DEPOBJS) > .depend - -.SUFFIXES: .ml .mli .cmo .cmi .cmx -.ml.cmo: - $(OCAMLC) -c $< -.mli.cmi: - $(OCAMLC) -c $< -.ml.cmx: - $(OCAMLOPT) -c $< - -clean: - rm -f *.cm[iox] - -install: - #cp - -uninstall: - #rm -f - -.PHONY: install uninstall clean - -include .depend