]> matita.cs.unibo.it Git - helm.git/blobdiff - matita/matita/contribs/lambda-delta/Makefile
- confluence of context-free reduction on terms (tpr) closed!
[helm.git] / matita / matita / contribs / lambda-delta / Makefile
index 978291c7d360c00e58c4ceec0d3de420bbc1b8c9..77f49615da37a2703e231fdeeccc0b639e443143 100644 (file)
@@ -5,43 +5,56 @@ XOA     = xoa.native
 CONF    = Ground-2/xoa.conf.xml
 TARGETS = Ground-2/xoa_natation.ma Ground-2/xoa.ma
 
+PACKAGES = Ground-2 Basic-2
+
 all:
 
+# xoa ########################################################################
+
 xoa: $(TARGETS)
 
 $(TARGETS): $(CONF)
        @echo "  EXEC $(XOA) $(CONF)"
        $(H)MATITA_RT_BASE_DIR=../.. $(XOA_DIR)/$(XOA) $(CONF)
 
-stats: MAS = $(shell find -name "*.ma")
+# stats ######################################################################
+
+stats: $(PACKAGES:%=%.stats)
 
-stats: CHARS = $(shell cat $(MAS) | wc -c)
+%.stats: MAS = $(shell find $* -name "*.ma")
 
-stats:
+%.stats: CHARS = $(shell cat $(MAS) | wc -c)
+
+%.stats:
+       @printf '\e[1;40;37m'
+       @printf '%-15s %-42s' 'Statistics for:' $*      
+       @printf '\e[0m\n'       
        @printf '\e[1;40;35m'
        @printf '%-8s %6i' Chars $(CHARS)
        @printf '   %-8s %5i' Lines `cat $(MAS) | wc -l`
        @printf '   %-6s %3i' Pages `echo $$(($(CHARS) / 5120))`
+       @printf '   %-10s' ''
        @printf '\e[0m\n'
        @printf '\e[1;40;36m'
        @printf '%-8s %6i' Sources `ls $(MAS) | wc -l`
-       @printf '   %-27s' ''
+       @printf '   %-40s' ''
 #      @printf '   %-8s %5i' Objs `ls *.vo | wc -l`
 #      @printf '   %-6s %3i' Files `ls *.v | wc -l`
        @printf '\e[0m\n'       
        @printf '\e[1;40;32m'
        @printf '%-8s %6i' Theorems `grep theorem $(MAS) | wc -l`
        @printf '   %-8s %5i' Lemmas `grep lemma $(MAS) | wc -l`
-       @printf '   %-6s %3i' Proofs `grep qed $(MAS) | wc -l`  
-#      @printf '   %-9s %3i' Generated `grep Derive *.v | wc -l`
+       @printf '   %-6s %3i' Facts `grep fact $(MAS) | wc -l`
+       @printf '   %-6s %3i' Proofs `grep qed $(MAS) | wc -l`
        @printf '\e[0m\n'       
        @printf '\e[1;40;33m'
        @printf '%-8s %6i' Defs `grep "definition\|let rec\|inductive\|record" $(MAS) | wc -l` 
-       @printf '   %-27s' ''
+       @printf '   %-40s' ''
 #      @printf '   %-8s %5i' Local `grep "Local" *.v | wc -l`
        @printf '\e[0m\n'
        @printf '\e[1;40;31m'
        @printf '%-8s %6i' Axioms `grep axiom $(MAS) | wc -l`
-       @printf '   %-8s %5i' Comments `grep "(\*[^*]*$$" $(MAS) | wc -l`
+       @printf '   %-8s %5i' Comments `grep "(\*[^*:]*$$" $(MAS) | wc -l`
        @printf '   %-6s %3i' Marks `grep "(\*\*)" $(MAS) | wc -l`
+       @printf '   %-10s' ''
        @printf '\e[0m\n'