]> matita.cs.unibo.it Git - helm.git/blob - helm/gTopLevel/Makefile
6dfa38622896000f116052ff92564176b37232fb
[helm.git] / helm / gTopLevel / Makefile
1 BIN_DIR = /usr/local/bin
2 REQUIRES = lablgtkmathview helm-cic_textual_parser helm-tex_cic_textual_parser \
3            helm-cic_proof_checking helm-xml gdome2-xslt helm-cic_unification \
4            helm-mathql helm-mathql_interpreter helm-mathql_generator \
5                  helm-tactics threads hbugs-client mathml-editor \
6            helm-cic_transformations
7 PREDICATES = "gnome,init,glade"
8 OCAMLOPTIONS = -package "$(REQUIRES)" -predicates "$(PREDICATES)" -pp camlp4o
9 OCAMLFIND = ocamlfind
10 OCAMLC = $(OCAMLFIND) ocamlc -thread $(OCAMLOPTIONS)
11 OCAMLOPT = $(OCAMLFIND) ocamlopt -thread $(OCAMLOPTIONS)
12 OCAMLDEP = ocamldep -pp camlp4o
13
14 LIBRARIES = $(shell ocamlfind query -recursive -predicates "byte $(PREDICATES)" -format "%d/%a" $(REQUIRES))
15 LIBRARIES_OPT = $(shell ocamlfind query -recursive -predicates "native $(PREDICATES)" -format "%d/%a" $(REQUIRES))
16
17 all: styles gTopLevel
18 opt: styles gTopLevel.opt
19
20 DEPOBJS = \
21         proofEngine.ml proofEngine.mli eta_fixing.ml eta_fixing.mli \
22         content2cic.ml content2cic.mli logicalOperations.ml \
23         logicalOperations.mli disambiguate.ml disambiguate.mli termEditor.ml \
24         termEditor.mli texTermEditor.ml texTermEditor.mli termViewer.ml \
25         termViewer.mli invokeTactics.ml invokeTactics.mli hbugs.ml hbugs.mli \
26         gTopLevel.ml
27
28 TOPLEVELOBJS = \
29                    doubleTypeInference.cmo eta_fixing.cmo content2cic.cmo \
30              proofEngine.cmo logicalOperations.cmo \
31              disambiguate.cmo termEditor.cmo texTermEditor.cmo termViewer.cmo \
32              invokeTactics.cmo hbugs.cmo gTopLevel.cmo
33
34 styles:
35         @echo "***********************************************************************"
36         @if [ -d stylesheets -a -d meta_stylesheets ] ; then echo -e "* stylesheets and metastylesheets found:                              *\\n* I will create the request hyperlinks in styles                      *" ; else echo -e "* stylesheets or meta_stylesheets not found:                          *\\n* you should check-out the two directories from the MoWGLI repository *" ; exit -1 ; fi
37         @echo "***********************************************************************"
38         mkdir styles
39         (cd styles && for i in ../stylesheets/*.xsl ; do ln -s $$i; done)
40         (cd styles && for i in ../stylesheets/generated/*.xsl ; do ln -s $$i; done)
41         (cd styles && rm rootcontent.xsl && ln -s ../rootcontent.xsl)
42         
43 depend:
44         $(OCAMLDEP) $(DEPOBJS) > .depend
45
46 gTopLevel: $(TOPLEVELOBJS) $(LIBRARIES)
47         $(OCAMLC) -linkpkg -o gTopLevel $(TOPLEVELOBJS)
48
49 gTopLevel.opt: $(TOPLEVELOBJS:.cmo=.cmx) $(LIBRARIES_OPT)
50         $(OCAMLOPT) -linkpkg -o gTopLevel.opt $(TOPLEVELOBJS:.cmo=.cmx)
51
52 .SUFFIXES: .ml .mli .cmo .cmi .cmx
53 .ml.cmo:
54         $(OCAMLC) -c $<
55 .mli.cmi:
56         $(OCAMLC) -c $<
57 .ml.cmx:
58         $(OCAMLOPT) -c $<
59
60 $(TOPLEVELOBJS): $(LIBRARIES)
61 $(TOPLEVELOBJS:.cmo=.cmx)): $(LIBRARIES_OPT)
62
63 clean:
64         rm -f *.cm[iox] *.o gTopLevel gTopLevel.opt
65
66 install:
67         cp gTopLevel gTopLevel.opt $(BIN_DIR)
68
69 uninstall:
70         rm -f $(BIN_DIR)/gTopLevel $(BIN_DIR)/gTopLevel.opt
71
72 .PHONY: install uninstall clean
73
74 ifneq ($(MAKECMDGOALS), depend)
75    include .depend   
76 endif
77
78
79
80
81
82
83
84