]> matita.cs.unibo.it Git - helm.git/blob - matita/matita/contribs/lambda_delta/Makefile
005b69df79599c0a91365fd90d76c255eb3ca74d
[helm.git] / matita / matita / contribs / lambda_delta / Makefile
1 H       = @
2 XOA_DIR = ../../../components/binaries/xoa
3 XOA     = xoa.native
4
5 CONF    = ground_2/xoa.conf.xml
6 TARGETS = ground_2/xoa_natation.ma ground_2/xoa.ma
7
8 PACKAGES = ground_2 basic_2 apps_2
9
10 all:
11
12 # xoa ########################################################################
13
14 xoa: $(TARGETS)
15
16 $(TARGETS): $(CONF)
17         @echo "  EXEC $(XOA) $(CONF)"
18         $(H)MATITA_RT_BASE_DIR=../.. $(XOA_DIR)/$(XOA) $(CONF)
19
20 # stats ######################################################################
21
22 stats: $(PACKAGES:%=%.stats)
23
24 %.stats: MAS = $(shell find $* -name "*.ma")
25
26 %.stats: CHARS = $(shell cat $(MAS) | wc -c)
27
28 %.stats:
29         @printf '\x1B[1;40;37m'
30         @printf '%-15s %-42s' 'Statistics for:' $*      
31         @printf '\x1B[0m\n'     
32         @printf '\x1B[1;40;35m'
33         @printf '%-8s %6i' Chars $(CHARS)
34         @printf '   %-8s %5i' Lines `cat $(MAS) | wc -l`
35         @printf '   %-6s %3i' Pages `echo $$(($(CHARS) / 5120))`
36         @printf '   %-10s' ''
37         @printf '\x1B[0m\n'
38         @printf '\x1B[1;40;36m'
39         @printf '%-8s %6i' Sources `ls $(MAS) | wc -l`
40         @printf '   %-40s' ''
41 #       @printf '   %-8s %5i' Objs `ls *.vo | wc -l`
42 #       @printf '   %-6s %3i' Files `ls *.v | wc -l`
43         @printf '\x1B[0m\n'     
44         @printf '\x1B[1;40;32m'
45         @printf '%-8s %6i' Theorems `grep "theorem " $(MAS) | wc -l`
46         @printf '   %-8s %5i' Lemmas `grep "lemma " $(MAS) | wc -l`
47         @printf '   %-6s %3i' Facts `grep "fact " $(MAS) | wc -l`
48         @printf '   %-6s %3i' Proofs `grep qed $(MAS) | wc -l`
49         @printf '\x1B[0m\n'     
50         @printf '\x1B[1;40;33m'
51         @printf '%-8s %6i' Defs `grep "definition\|let rec\|inductive\|record" $(MAS) | wc -l` 
52         @printf '   %-40s' ''
53 #       @printf '   %-8s %5i' Local `grep "Local" *.v | wc -l`
54         @printf '\x1B[0m\n'
55         @printf '\x1B[1;40;31m'
56         @printf '%-8s %6i' Axioms `grep axiom $(MAS) | wc -l`
57         @printf '   %-8s %5i' Comments `grep "(\*[^*:]*$$" $(MAS) | wc -l`
58         @printf '   %-6s %3i' Marks `grep "(\*\*)" $(MAS) | wc -l`
59         @printf '   %-10s' ''
60         @printf '\x1B[0m\n'
61
62 # summary ####################################################################
63
64 define SUMMARY_TEMPLATE
65   TBL_$(1) := $(1)/$(1)_sum.tbl  
66   MAS_$(1) := $$(shell find $(1) -name "*.ma")
67   TBLS     += $$(TBL_$(1))
68
69   $$(TBL_$(1)): V1 := $$(shell ls $$(MAS_$(1)) | wc -l)
70   $$(TBL_$(1)): V2 := $$(shell cat $$(MAS_$(1)) | wc -c)
71   $$(TBL_$(1)): C1 := $$(shell grep "inductive \|record " $$(MAS_$(1)) | wc -l)
72   $$(TBL_$(1)): C2 := $$(shell grep "definition \|let rec " $$(MAS_$(1)) | wc -l)
73   $$(TBL_$(1)): C3 := $$(shell grep "inductive \|record \|definition \|let rec " $$(MAS_$(1)) | wc -l)
74   $$(TBL_$(1)): P1 := $$(shell grep "theorem " $$(MAS_$(1)) | wc -l)
75   $$(TBL_$(1)): P2 := $$(shell grep "lemma " $$(MAS_$(1)) | wc -l)
76   $$(TBL_$(1)): P3 := $$(shell grep "lemma \|theorem " $$(MAS_$(1)) | wc -l)
77
78   $$(TBL_$(1)): $$(MAS_$(1))
79         @printf '  SUMMARY $(1)\n'
80         @printf 'name "$$(basename $$(@F))"\n\n'       >  $$@
81         @printf 'table {\n'                            >> $$@
82         @printf '   class "grey" [ "category"\n'       >> $$@
83         @printf '      [ "objects" * ]\n'              >> $$@
84         @printf '   ]\n'                               >> $$@
85         @printf '   class "cyan" [ "sizes"\n'          >> $$@
86         @printf '      [ "files" "$$(V1)" ]\n'         >> $$@
87         @printf '      [ "bytes" "$$(V2)" ]\n'         >> $$@
88         @printf '      [ * ]\n'                        >> $$@
89         @printf '   ]\n'                               >> $$@   
90         @printf '   class "green" [ "propositions"\n'  >> $$@
91         @printf '      [ "theorems" "$$(P1)" ]\n'      >> $$@
92         @printf '      [ "lemmas"   "$$(P2)" ]\n'      >> $$@
93         @printf '      [ "total"    "$$(P3)" ]\n'      >> $$@
94         @printf '   ]\n'                               >> $$@
95         @printf '   class "yellow" [ "concepts"\n'     >> $$@
96         @printf '      [ "declared" "$$(C1)" ]\n'      >> $$@
97         @printf '      [ "defined"  "$$(C2)" ]\n'      >> $$@
98         @printf '      [ "total"    "$$(C3)" ]\n'      >> $$@
99         @printf '   ]\n'                               >> $$@
100         @printf '}\n\n'                                >> $$@
101         @printf 'class "component" { 0 }\n\n'          >> $$@
102         @printf 'class "plane" { 1 } { 3 } { 5 }\n\n'  >> $$@
103         @printf 'class "number" { 2 } { 4 } { 6 }\n\n' >> $$@
104 endef
105
106 $(foreach PKG, $(PACKAGES), $(eval $(call SUMMARY_TEMPLATE,$(PKG))))
107
108 tbls: $(TBLS)