]> matita.cs.unibo.it Git - helm.git/blob - matita/matita/contribs/lambda_delta/Makefile
- lambda_delta: morew propertie in context-sensitive computation
[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 # sum ########################################################################
63
64 tbls: $(PACKAGES:%=etc/ld_%_sum.tbl)
65
66 etc/ld_%_sum.tbl: MAS = $(shell find $* -name "*.ma")
67
68 %.tbl: V1 = $(shell ls $(MAS) | wc -l)
69 %.tbl: C1 = $(shell grep "inductive \|record " $(MAS) | wc -l)
70 %.tbl: C2 = $(shell grep "definition \|let rec " $(MAS) | wc -l)
71 %.tbl: C3 = $(shell grep "inductive \|record \|definition \|let rec " $(MAS) | wc -l)
72 %.tbl: P1 = $(shell grep "theorem " $(MAS) | wc -l)
73 %.tbl: P2 = $(shell grep "lemma " $(MAS) | wc -l)
74 %.tbl: P3 = $(shell grep "lemma \|theorem " $(MAS) | wc -l)
75
76 etc/ld_%_sum.tbl: $(MAS)
77         @mkdir -p etc
78         @printf 'Summary for: $*\n'
79         @printf 'name "$(basename $(@F))"\n\n'         >  $@
80         @printf 'table {\n'                            >> $@
81         @printf '   class "grey" [ "category"\n'       >> $@
82         @printf '      [ "objects" * ]\n'              >> $@
83         @printf '   ]\n'                               >> $@
84         @printf '   class "cyan" [ "volume"\n'         >> $@
85         @printf '      [ "files" "$(V1)" * ]\n'        >> $@
86         @printf '      [ 4 ]\n'                        >> $@
87         @printf '   ]\n'                               >> $@    
88         @printf '   class "green" [ "propositions"\n'  >> $@
89         @printf '      [ "theorems" "$(P1)" * ]\n'     >> $@
90         @printf '      [ "lemmas"   "$(P2)" * ]\n'     >> $@
91         @printf '      [ "total"    "$(P3)" * ]\n'     >> $@
92         @printf '   ]\n'                               >> $@
93         @printf '   class "yellow" [ "concepts"\n'     >> $@
94         @printf '      [ "declared" "$(C1)" * ]\n'     >> $@
95         @printf '      [ "defined"  "$(C2)" * ]\n'     >> $@
96         @printf '      [ "total"    "$(C3)" * ]\n'     >> $@
97         @printf '   ]\n'                               >> $@
98         @printf '}\n\n'                                >> $@
99         @printf 'class "component" { 0 }\n\n'          >> $@
100         @printf 'class "plane" { 1 } { 3 } { 5 }\n\n'  >> $@
101         @printf 'class "number" { 2 } { 4 } { 6 }\n\n' >> $@