]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/ocaml/cic_annotations/Makefile
HELM OCaml libraries with findlib support.
[helm.git] / helm / ocaml / cic_annotations / Makefile
diff --git a/helm/ocaml/cic_annotations/Makefile b/helm/ocaml/cic_annotations/Makefile
new file mode 100644 (file)
index 0000000..776d6c4
--- /dev/null
@@ -0,0 +1,39 @@
+BIN_DIR = /usr/local/bin
+REQUIRES = helm-cic helm-xml lablgtk
+PREDICATES =
+OCAMLOPTIONS = -package "$(REQUIRES)" -predicates "$(PREDICATES)"
+OCAMLC = ocamlfind ocamlc $(OCAMLOPTIONS)
+OCAMLOPT = ocamlfind ocamlopt $(OCAMLOPTIONS)
+OCAMLDEP = ocamldep
+
+all: cicAnnotation2Xml.cmo cicAnnotationHinter.cmo cicAnnotationParser2.cmo \
+     cicAnnotationParser.cmo cicXPath.cmo
+opt: cicAnnotation2Xml.cmx cicAnnotationHinter.cmx cicAnnotationParser2.cmx \
+     cicAnnotationParser.cmx cicXPath.cmx
+
+DEPOBJS = cicAnnotation2Xml.ml cicAnnotationHinter.ml cicAnnotationParser2.ml \
+          cicAnnotationParser.ml cicXPath.ml
+
+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