]> matita.cs.unibo.it Git - helm.git/blob - matita/matita/contribs/lambdadelta/Makefile
updated probe and matitadep
[helm.git] / matita / matita / contribs / lambdadelta / Makefile
1 OPEN := (
2 H    := @
3
4 TRIM := sed "s/ \\+$$//"
5
6 XOA_CONF     := ground_2/xoa.conf.xml
7 XOA_TARGETS  := ground_2/notation/xoa/notation.ma ground_2/xoa/xoa.ma
8
9 XOA_DIR      := ../../../components/binaries/xoa
10 XOA          := xoa.native
11 XOA_OPTS     := ../../matita.conf.xml $(XOA_CONF)
12
13 XOA2_CONF    := ground_2/xoa2.conf.xml
14 XOA2_OPTS    := ../../matita.conf.xml $(XOA2_CONF)
15
16 DEP_INPUT    := .depend
17 DEP_DIR      := ../../../components/binaries/matitadep
18 DEP          := matitadep.native
19 DEP_OPTS     :=
20
21 PRB_DIR      := ../../../components/binaries/probe
22 PRB          := probe.native
23 PRB_OPTS     := $(XOA_OPTS) -g -i
24
25 ORIG         := . ./orig.sh 
26 ORIGS        := basic_2/basic_1.orig
27
28 CONTRIB      := lambdadelta_2
29
30 WWW          := ../../../../helm/www/lambdadelta
31
32 TAGS := all xoa xoa2 orig elim deps top leaf stats tbls trim contrib clean \
33         www up-html
34
35 PACKAGES  := ground_2 static_2 basic_2 apps_2 alpha_1
36 XPACKAGES := ground_2 static_2 basic_2
37
38 LDWS := $(shell find -name "*.ldw.xml")
39 TBLS := $(shell find -name "*.tbl")
40
41 all:
42         @echo "  MATITAC $(PACKAGES)"
43         $(H)../../matitac.opt $(PACKAGES)
44
45 # MAS ########################################################################
46
47 define MAS_TEMPLATE
48   MAS_$(1) := $$(shell find $(1) -name "*.ma")
49   MAS      += $$(MAS_$(1))
50
51 $(1)/$(1)_probe.txt: $$(MAS_$(1))
52         @echo "  PROBE $(1)"
53         $$(H)$$(PRB_DIR)/$$(PRB) $$(PRB_OPTS) $(1) -sn -sc -on -oc -f -b $(1)/$(1)_deps.txt > $$@
54         $$(H)sort < $(1)/$(1)_deps.txt | uniq > $(1)/$(1)_deps_uniq.txt
55 endef
56
57 $(foreach PKG, $(PACKAGES), $(eval $(call MAS_TEMPLATE,$(PKG))))
58
59 # XMAS #######################################################################
60
61 define XMAS_TEMPLATE
62   XMAS += $$(MAS_$(1))
63 endef
64
65 $(foreach PKG, $(XPACKAGES), $(eval $(call XMAS_TEMPLATE,$(PKG))))
66
67 # xoa ########################################################################
68
69 xoa: $(XOA_TARGETS)
70
71 $(XOA_TARGETS): $(XOA_CONF)
72         @echo "  EXEC $(XOA) $(XOA_CONF)"
73         $(H)$(XOA_DIR)/$(XOA) $(XOA_OPTS)
74
75 # xoa2 #######################################################################
76
77 xoa2: $(XOA2_CONF)
78         @echo "  EXEC $(XOA) $(XOA2_CONF)"
79         $(H)MATITA_RT_BASE_DIR=../.. $(XOA_DIR)/$(XOA) -s $(XOA2_OPTS)
80
81 # elim #######################################################################
82
83 elim:
84         @echo "  GREP elim"
85         $(H)grep "elim (.*?)" $(MAS) || true
86
87 # orig #######################################################################
88
89 orig: $(ORIGS)
90         @echo "  ORIG basic_2"
91         $(H)$(ORIG) basic_2 < $<
92
93 # dep input ##################################################################
94
95 $(DEP_INPUT): LINE = $(MAS:%=%:include \"\".)
96
97 $(DEP_INPUT): $(MAS) Makefile
98         @echo "  GREP include"
99         $(H)grep "include \"" $(MAS) > $(DEP_INPUT)
100         $(H)echo "$(LINE)" | sed -e 's/\"\. /\"\.\n/g' >> $(DEP_INPUT) 
101
102 # dep ########################################################################
103
104 deps: $(DEP_INPUT)
105         @echo "  MATITADEP -c"
106         $(H)$(DEP_DIR)/$(DEP) -c $(DEP_OPTS) $<
107
108 # top ########################################################################
109
110 top: $(DEP_INPUT)
111         @echo "  MATITADEP -t"
112         $(H)$(DEP_DIR)/$(DEP) -t $(DEP_OPTS) $<
113
114 # leaf #######################################################################
115
116 leaf: $(DEP_INPUT)
117         @echo "  MATITADEP -l"
118         $(H)$(DEP_DIR)/$(DEP) -l $(DEP_OPTS) $<
119
120 # stats ######################################################################
121
122 define STATS_TEMPLATE
123   STT_$(1) := $(1).stats
124   STTS     += $$(STT_$(1))
125
126   $$(STT_$(1)): C0 = $$(shell cat $(1)/$(1)_probe.txt)
127   $$(STT_$(1)): C2 = $$(word 2, $$(C0))
128   $$(STT_$(1)): C3 = $$(word 4, $$(C0))
129   $$(STT_$(1)): O1 = $$(shell ls $$(MAS_$(1)) | wc -l)
130   $$(STT_$(1)): O2 = $$(word 1, $$(C0))
131   $$(STT_$(1)): O3 = $$(word 3, $$(C0))
132   $$(STT_$(1)): P1 = $$(word 10, $$(C0))
133   $$(STT_$(1)): P2 = $$(word 9, $$(C0))
134   $$(STT_$(1)): P3 = $$(word 8, $$(C0))
135   $$(STT_$(1)): P4 = $$(shell grep "qed[.-]" $$(MAS_$(1)) | wc -l)
136   $$(STT_$(1)): D1 = $$(word 5, $$(C0))
137   $$(STT_$(1)): D2 = $$(word 7, $$(C0))
138   $$(STT_$(1)): D3 = $$(shell grep "defined[.-]" $$(MAS_$(1)) | wc -l)  
139   $$(STT_$(1)): M1 = $$(word 6, $$(C0))
140   $$(STT_$(1)): M2 = $$(shell grep "$$(OPEN)\*[^*:]*$$$$" $$(MAS_$(1)) | wc -l)
141   $$(STT_$(1)): M3 = $$(shell grep "(\*\*)" $$(MAS_$(1)) | wc -l)
142
143 $$(STT_$(1)): $$(MAS_$(1)) $(1)/$(1)_probe.txt
144         @printf '\x1B[1;40;37m'
145         @printf '%-15s %-46s' 'Statistics for:' $(1)
146         @printf '\x1B[0m\n'
147         @printf '\x1B[1;40;35m'
148         @printf '%-12s' '' 
149         @printf '   %-8s %6i' Chars $$(C2)
150         @printf '   %-7s %7i' Nodes $$(C3)
151         @printf '   %-11s' ''
152         @printf '\x1B[0m\n'
153         @printf '\x1B[1;40;36m'
154         @printf '%-8s %3i' Files $$(O1)
155         @printf '   %-8s %6i' Sources $$(O2)
156         @printf '   %-7s %7i' Objects $$(O3)
157         @printf '   %-11s' ''
158         @printf '\x1B[0m\n'     
159         @printf '\x1B[1;40;32m'
160         @printf '%-8s %3i' Theorems $$(P1)
161         @printf '   %-8s %6i' Lemmas $$(P2)
162         @printf '   %-7s %7i' Facts $$(P3)
163         @printf '   %-6s %4i' Proofs $$(P4)
164         @printf '\x1B[0m\n'     
165         @printf '\x1B[1;40;33m'
166         @printf '%-8s %3i' Declared $$(D1)
167         @printf '   %-8s %6i' Defined $$(D2)    
168         @printf '   %-7s %7i' Proved $$(D3)
169         @printf '   %-11s' ''
170         @printf '\x1B[0m\n'
171         @printf '\x1B[1;40;31m'
172         @printf '%-8s %3i' Axioms $$(M1)
173         @printf '   %-8s %6i' Comments $$(M2)
174         @printf '   %-7s %7i' Marks $$(M3)
175         @printf '   %-11s' ''
176         @printf '\x1B[0m\n'
177
178 .PHONY: $$(STT_$(1))
179 endef
180
181 ifeq ($(MAKECMDGOALS), stats)
182    $(foreach PKG, $(PACKAGES), $(eval $(call STATS_TEMPLATE,$(PKG))))
183 endif
184
185 stats: $(STTS)
186
187 # summary ####################################################################
188
189 define SUMMARY_TEMPLATE
190   SUM_$(1) := $(1)/web/$(1)_sum.tbl  
191   SUMS     += $$(SUM_$(1))
192
193   $$(SUM_$(1)): C0 = $$(shell cat $(1)/$(1)_probe.txt)
194   $$(SUM_$(1)): S1 = $$(word 1, $$(C0))
195   $$(SUM_$(1)): S2 = $$(word 2, $$(C0))
196   $$(SUM_$(1)): S3 = $$(word 3, $$(C0))
197   $$(SUM_$(1)): S4 = $$(word 4, $$(C0))
198   $$(SUM_$(1)): S5 = $$(shell printf "%.1f" `echo "scale=2;$$(S4)/$$(S2)"|bc`)
199   $$(SUM_$(1)): C1 = $$(word 5, $$(C0))
200   $$(SUM_$(1)): C2 = $$(word 7, $$(C0))
201   $$(SUM_$(1)): C3 = $$(shell echo "$$(C1)+$$(C2)"|bc)
202   $$(SUM_$(1)): P1 = $$(word 10, $$(C0))
203   $$(SUM_$(1)): P2 = $$(word 9, $$(C0))
204   $$(SUM_$(1)): P3 = $$(shell echo "$$(P1)+$$(P2)"|bc)
205
206   $$(SUM_$(1)): $$(MAS_$(1)) $(1)/$(1)_probe.txt Makefile
207         @printf '  SUMMARY $(1)\n'
208         @printf 'name "$$(basename $$(@F))"\n\n'                        >  $$@
209         @printf 'table {\n'                                             >> $$@
210         @printf '   class "gray"  [ "category"\n'                       >> $$@
211         @printf '      [ "units" * ]\n'                                 >> $$@
212         @printf '   ]\n'                                                >> $$@
213         @printf '   class "water" [ "sizes"\n'                          >> $$@
214         @printf '      [ "characters (files)"    "$$(S2) ($$(S1))" ]\n' >> $$@
215         @printf '      [ "nodes (objects)"       "$$(S4) ($$(S3))" ]\n' >> $$@
216         @printf '      [ "intrinsic loss factor" "$$(S5)" ]\n'          >> $$@
217         @printf '   ]\n'                                                >> $$@  
218         @printf '   class "green" [ "propositions"\n'                   >> $$@
219         @printf '      [ "theorems" "$$(P1)" ]\n'                       >> $$@
220         @printf '      [ "lemmas"   "$$(P2)" ]\n'                       >> $$@
221         @printf '      [ "total"    "$$(P3)" ]\n'                       >> $$@
222         @printf '   ]\n'                                                >> $$@
223         @printf '   class "grass" [ "concepts"\n'                       >> $$@
224         @printf '      [ "declared" "$$(C1)" ]\n'                       >> $$@
225         @printf '      [ "defined"  "$$(C2)" ]\n'                       >> $$@
226         @printf '      [ "total"    "$$(C3)" ]\n'                       >> $$@
227         @printf '   ]\n'                                                >> $$@
228         @printf '}\n\n'                                                 >> $$@
229         @printf 'class "capitalize italic" { 0 }\n\n'                   >> $$@
230         @printf 'class "italic"            { 1 } { 3 } { 5 }\n\n'       >> $$@
231         @printf 'class "right italic"      { 2 } { 4 } { 6 }\n'         >> $$@
232
233 .PHONY: $$(SUM_$(1))
234 endef
235
236 ifeq ($(MAKECMDGOALS), tbls)
237    $(foreach PKG, $(PACKAGES), $(eval $(call SUMMARY_TEMPLATE,$(PKG))))
238 endif
239
240 tbls: $(SUMS)
241
242 # trim #######################################################################
243
244 TRIMS := $(MAS) $(TBLS) $(LDWS)
245
246 %.trimmed: %
247         $(H)expand $< | $(TRIM) > $@
248         $(H)if diff $< $@ > /dev/null; then $(RM) $@; else echo "  TRIM $<" & mv $@ $<; fi
249
250 trim: $(TRIMS:%=%.trimmed)
251
252 # contrib ####################################################################
253
254 contrib:
255         @echo "  TAR -czf $(CONTRIB).tar.gz root $(XPACKAGES)"
256         $(H)tar -czf $(CONTRIB).tar.gz root $(XMAS)
257
258 # clean ######################################################################
259
260 clean:
261         $(H)$(RM) `find -name "*~" -type f -print`
262
263 # www ######################################################################
264
265 www:
266         $(H)$(MAKE) --no-print-directory -C $(WWW) www
267
268 # www ######################################################################
269
270 up-html:
271         $(H)$(MAKE) --no-print-directory -C $(WWW) up-html
272
273 ##############################################################################
274
275 .PHONY: $(TAGS)
276
277 .SUFFIXES: