X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=matita%2Fmatita%2Fcontribs%2Flambdadelta%2FMakefile;h=f3d8b3232ad8e33d4e84f8c98851de01ee8d8a01;hb=4b8544042a6f3c5f5d303d4120c69abbc34ce15b;hp=9bf98bda69a602f276e40b3d71689d60cd2ee8e9;hpb=fdb2c62b58006b82c015ba70b494d50c7860e28f;p=helm.git diff --git a/matita/matita/contribs/lambdadelta/Makefile b/matita/matita/contribs/lambdadelta/Makefile index 9bf98bda6..f3d8b3232 100644 --- a/matita/matita/contribs/lambdadelta/Makefile +++ b/matita/matita/contribs/lambdadelta/Makefile @@ -4,18 +4,20 @@ H := @ TRIM := sed "s/ \\+$$//" XOA_CONF := ground_2/xoa.conf.xml -XOA_TARGETS := ground_2/xoa_notation.ma ground_2/xoa.ma +XOA_TARGETS := ground_2/notation/xoa_notation.ma ground_2/xoa/xoa.ma XOA_DIR := ../../../components/binaries/xoa XOA := xoa.native XOA_OPTS := ../../matita.conf.xml $(XOA_CONF) XOA2_CONF := ground_2/xoa2.conf.xml -XOA2_TARGETS := ground_2/xoa2_notation.ma ground_2/xoa2.ma +XOA2_TARGETS := ground_2/notation/xoa2_notation.ma ground_2/xoa/xoa2.ma XOA2_OPTS := ../../matita.conf.xml $(XOA2_CONF) +DEP_INPUT := .depend DEP_DIR := ../../../components/binaries/matitadep DEP := matitadep.native +DEP_OPTS := MAC_DIR := ../../../components/binaries/mac MAC := mac.native @@ -23,20 +25,24 @@ MAC_OPTS := PRB_DIR := ../../../components/binaries/probe PRB := probe.native -PRB_OPTS := $(XOA_OPTS) -g +PRB_OPTS := $(XOA_OPTS) -g -i ORIG := . ./orig.sh ORIGS := basic_2/basic_1.orig -TAGS := all xoa xoa2 orig elim deps top stats tbls trim +CONTRIB := lambdadelta_2 -PACKAGES := ground_2 basic_2 apps_2 +TAGS := all xoa xoa2 orig elim deps top leaf stats tbls trim contrib + +PACKAGES := ground_2 basic_2 apps_2 alpha_1 +XPACKAGES := ground_2 basic_2 LDWS := $(shell find -name "*.ldw.xml") TBLS := $(shell find -name "*.tbl") all: - ../../matitac.opt + @echo " MATITAC $(PACKAGES)" + $(H)../../matitac.opt $(PACKAGES) # MAS ######################################################################## @@ -46,7 +52,7 @@ define MAS_TEMPLATE $(1)/$(1)_probe.txt: $$(MAS_$(1)) @echo " PROBE $(1)" - $$(H)$$(PRB_DIR)/$$(PRB) $$(PRB_OPTS) $(1) -sn -on -i > $$@ + $$(H)$$(PRB_DIR)/$$(PRB) $$(PRB_OPTS) $(1) -sn -on -c > $$@ $(1)/$(1)_mac.txt: $$(MAS_$(1)) @echo " MAC $(1)" @@ -55,6 +61,14 @@ endef $(foreach PKG, $(PACKAGES), $(eval $(call MAS_TEMPLATE,$(PKG)))) +# XMAS ####################################################################### + +define XMAS_TEMPLATE + XMAS += $$(MAS_$(1)) +endef + +$(foreach PKG, $(XPACKAGES), $(eval $(call XMAS_TEMPLATE,$(PKG)))) + # xoa ######################################################################## xoa: $(XOA_TARGETS) @@ -83,17 +97,29 @@ orig: $(ORIGS) @echo " ORIG basic_2" $(H)$(ORIG) basic_2 < $< +# dep input ################################################################## + +$(DEP_INPUT): $(MAS) + @echo " GREP include" + $(H)grep "include \"" $^ > $(DEP_INPUT) + # dep ######################################################################## -deps: $(DEP_DIR)/$(DEP) - @echo " MATITADEP" - $(H)grep "include \"" $(MAS) | $< +deps: $(DEP_INPUT) + @echo " MATITADEP -c" + $(H)$(DEP_DIR)/$(DEP) -c $(DEP_OPTS) < $< # top ######################################################################## -top: $(DEP_DIR)/$(DEP) +top: $(DEP_INPUT) @echo " MATITADEP -t" - $(H)grep "include \"" $(MAS) | $< -t + $(H)$(DEP_DIR)/$(DEP) -t $(DEP_OPTS) < $< + +# leaf ####################################################################### + +leaf: $(DEP_INPUT) + @echo " MATITADEP -l" + $(H)$(DEP_DIR)/$(DEP) -l $(DEP_OPTS) < $< # stats ###################################################################### @@ -101,16 +127,17 @@ define STATS_TEMPLATE STT_$(1) := $(1).stats STTS += $$(STT_$(1)) - $$(STT_$(1)): S0 = $$(shell cat $(1)/$(1)_probe.txt) + $$(STT_$(1)): S0 = $$(shell cat $(1)/$(1)_probe.txt) $$(STT_$(1)): S1 = $$(shell cat $(1)/$(1)_mac.txt) $$(STT_$(1)): S4 = $$(shell ls $$(MAS_$(1)) | wc -l) - $$(STT_$(1)): P1 = $$(shell grep "theorem " $$(MAS_$(1)) | wc -l) - $$(STT_$(1)): P2 = $$(shell grep "lemma " $$(MAS_$(1)) | wc -l) - $$(STT_$(1)): P3 = $$(shell grep "fact " $$(MAS_$(1)) | wc -l) - $$(STT_$(1)): P4 = $$(shell grep qed $$(MAS_$(1)) | wc -l) - $$(STT_$(1)): C1 = $$(shell grep "inductive \|record " $$(MAS_$(1)) | wc -l) - $$(STT_$(1)): C2 = $$(shell grep "definition \|let rec " $$(MAS_$(1)) | wc -l) - $$(STT_$(1)): M1 = $$(shell grep "axiom " $$(MAS_$(1)) | wc -l) + $$(STT_$(1)): P1 = $$(shell grep "^theorem " $$(MAS_$(1)) | wc -l) + $$(STT_$(1)): P2 = $$(shell grep "^lemma " $$(MAS_$(1)) | wc -l) + $$(STT_$(1)): P3 = $$(shell grep "^fact " $$(MAS_$(1)) | wc -l) + $$(STT_$(1)): P4 = $$(shell grep "qed[.-]" $$(MAS_$(1)) | wc -l) + $$(STT_$(1)): C1 = $$(shell grep "^inductive \|^record " $$(MAS_$(1)) | wc -l) + $$(STT_$(1)): C2 = $$(shell grep "^definition \|^let rec " $$(MAS_$(1)) | wc -l) + $$(STT_$(1)): C3 = $$(shell grep "defined[.-]" $$(MAS_$(1)) | wc -l) + $$(STT_$(1)): M1 = $$(shell grep "^axiom " $$(MAS_$(1)) | wc -l) $$(STT_$(1)): M2 = $$(shell grep "$$(OPEN)\*[^*:]*$$$$" $$(MAS_$(1)) | wc -l) $$(STT_$(1)): M3 = $$(shell grep "(\*\*)" $$(MAS_$(1)) | wc -l) @@ -139,7 +166,8 @@ $$(STT_$(1)): $$(MAS_$(1)) $(1)/$(1)_probe.txt $(1)/$(1)_mac.txt @printf '\x1B[1;40;33m' @printf '%-8s %6i' Declared $$(C1) @printf ' %-8s %4i' Defined $$(C2) - @printf ' %-29s' '' + @printf ' %-7s %7i' Proved $$(C3) + @printf ' %-11s' '' @printf '\x1B[0m\n' @printf '\x1B[1;40;31m' @printf '%-8s %6i' Axioms $$(M1) @@ -163,42 +191,42 @@ define SUMMARY_TEMPLATE SUM_$(1) := $(1)/web/$(1)_sum.tbl SUMS += $$(SUM_$(1)) - $$(SUM_$(1)): S0 = $$(shell cat $(1)/$(1)_probe.txt) + $$(SUM_$(1)): S0 = $$(shell cat $(1)/$(1)_probe.txt) $$(SUM_$(1)): S1 = $$(shell cat $(1)/$(1)_mac.txt) - $$(SUM_$(1)): S4 = $$(shell ls $$(MAS_$(1)) | wc -l) - $$(SUM_$(1)): C1 = $$(shell grep "inductive \|record " $$(MAS_$(1)) | wc -l) - $$(SUM_$(1)): C2 = $$(shell grep "definition \|let rec " $$(MAS_$(1)) | wc -l) - $$(SUM_$(1)): C3 = $$(shell grep "inductive \|record \|definition \|let rec " $$(MAS_$(1)) | wc -l) - $$(SUM_$(1)): P1 = $$(shell grep "theorem " $$(MAS_$(1)) | wc -l) - $$(SUM_$(1)): P2 = $$(shell grep "lemma " $$(MAS_$(1)) | wc -l) - $$(SUM_$(1)): P3 = $$(shell grep "lemma \|theorem " $$(MAS_$(1)) | wc -l) + $$(SUM_$(1)): S4 = $$(shell ls $$(MAS_$(1)) | wc -l) + $$(SUM_$(1)): C1 = $$(shell grep "^inductive \|^record " $$(MAS_$(1)) | wc -l) + $$(SUM_$(1)): C2 = $$(shell grep "^definition \|^let rec " $$(MAS_$(1)) | wc -l) + $$(SUM_$(1)): C3 = $$(shell grep "^inductive \|^record \|^definition \|^let rec " $$(MAS_$(1)) | wc -l) + $$(SUM_$(1)): P1 = $$(shell grep "^theorem " $$(MAS_$(1)) | wc -l) + $$(SUM_$(1)): P2 = $$(shell grep "^lemma " $$(MAS_$(1)) | wc -l) + $$(SUM_$(1)): P3 = $$(shell grep "^lemma \|^theorem " $$(MAS_$(1)) | wc -l) $$(SUM_$(1)): $$(MAS_$(1)) $(1)/$(1)_probe.txt $(1)/$(1)_mac.txt @printf ' SUMMARY $(1)\n' - @printf 'name "$$(basename $$(@F))"\n\n' > $$@ - @printf 'table {\n' >> $$@ - @printf ' class "grey" [ "category"\n' >> $$@ - @printf ' [ "objects" * ]\n' >> $$@ - @printf ' ]\n' >> $$@ - @printf ' class "cyan" [ "sizes"\n' >> $$@ - @printf ' [ "files" "$$(S4)" ]\n' >> $$@ - @printf ' [ "characters" "$$(word 1, $$(S1))" ]\n' >> $$@ - @printf ' [ "nodes" "$$(word 3, $$(S0))" ]\n' >> $$@ - @printf ' ]\n' >> $$@ - @printf ' class "green" [ "propositions"\n' >> $$@ - @printf ' [ "theorems" "$$(P1)" ]\n' >> $$@ - @printf ' [ "lemmas" "$$(P2)" ]\n' >> $$@ - @printf ' [ "total" "$$(P3)" ]\n' >> $$@ - @printf ' ]\n' >> $$@ - @printf ' class "yellow" [ "concepts"\n' >> $$@ - @printf ' [ "declared" "$$(C1)" ]\n' >> $$@ - @printf ' [ "defined" "$$(C2)" ]\n' >> $$@ - @printf ' [ "total" "$$(C3)" ]\n' >> $$@ - @printf ' ]\n' >> $$@ - @printf '}\n\n' >> $$@ - @printf 'class "component" { 0 }\n\n' >> $$@ - @printf 'class "plane" { 1 } { 3 } { 5 }\n\n' >> $$@ - @printf 'class "number" { 2 } { 4 } { 6 }\n' >> $$@ + @printf 'name "$$(basename $$(@F))"\n\n' > $$@ + @printf 'table {\n' >> $$@ + @printf ' class "gray" [ "category"\n' >> $$@ + @printf ' [ "objects" * ]\n' >> $$@ + @printf ' ]\n' >> $$@ + @printf ' class "cyan" [ "sizes"\n' >> $$@ + @printf ' [ "files" "$$(S4)" ]\n' >> $$@ + @printf ' [ "characters" "$$(word 1, $$(S1))" ]\n' >> $$@ + @printf ' [ "nodes" "$$(word 3, $$(S0))" ]\n' >> $$@ + @printf ' ]\n' >> $$@ + @printf ' class "green" [ "propositions"\n' >> $$@ + @printf ' [ "theorems" "$$(P1)" ]\n' >> $$@ + @printf ' [ "lemmas" "$$(P2)" ]\n' >> $$@ + @printf ' [ "total" "$$(P3)" ]\n' >> $$@ + @printf ' ]\n' >> $$@ + @printf ' class "yellow" [ "concepts"\n' >> $$@ + @printf ' [ "declared" "$$(C1)" ]\n' >> $$@ + @printf ' [ "defined" "$$(C2)" ]\n' >> $$@ + @printf ' [ "total" "$$(C3)" ]\n' >> $$@ + @printf ' ]\n' >> $$@ + @printf '}\n\n' >> $$@ + @printf 'class "capitalize italic" { 0 }\n\n' >> $$@ + @printf 'class "italic" { 1 } { 3 } { 5 }\n\n' >> $$@ + @printf 'class "right italic" { 2 } { 4 } { 6 }\n' >> $$@ .PHONY: $$(SUM_$(1)) endef @@ -219,6 +247,12 @@ TRIMS := $(MAS) $(TBLS) $(LDWS) trim: $(TRIMS:%=%.trimmed) +# contrib #################################################################### + +contrib: + @echo " TAR -czf $(CONTRIB).tar.gz root $(XPACKAGES)" + $(H)tar -czf $(CONTRIB).tar.gz root $(XMAS) + ############################################################################## .PHONY: $(TAGS)