X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fmatita%2Fcontribs%2FLAMBDA-TYPES%2FMakefile;h=754dde6215383ad9b15a15202586e8ed62602f58;hb=3097a335e9b2d822ca7586a978b1e7c18eda0316;hp=fc69e97c656fafe1bbdb304117420ba6d8761a08;hpb=5b8db2a058d6a86d7d87db190e6e00e444fe7a45;p=helm.git diff --git a/helm/software/matita/contribs/LAMBDA-TYPES/Makefile b/helm/software/matita/contribs/LAMBDA-TYPES/Makefile index fc69e97c6..754dde621 100644 --- a/helm/software/matita/contribs/LAMBDA-TYPES/Makefile +++ b/helm/software/matita/contribs/LAMBDA-TYPES/Makefile @@ -1,35 +1,59 @@ H=@ -MATITAOPTIONS= -#-onepass +MATITAOPTIONS=$(MATITAUSEROPTIONS) -onepass DIR=$(shell basename $$PWD) -MMAS = $(shell find Base-2 -name "*.mma") +MMAS = $(shell find Legacy-2 -name "*.mma") # Base-2 MAS = $(MMAS:%.mma=%.ma) +XMAS = Legacy-2/theory.ma # Base-2/theory.ma LambdaDelta-2/theory.ma -%.ma: %.mma - $(H)../../matitac.opt $(MATITAOPTIONS) $< 2> /dev/null - $(H)../../matitac.opt $(MATITAOPTIONS) -dump $@ $< 2> /dev/null - $(H)$(MAKE) depend.opt +$(DIR) all: depends + $(H)$(MAKE) H=$(H) --no-print-directory build + +$(DIR).opt opt all.opt: depends + $(H)$(MAKE) H=$(H) --no-print-directory build.opt -$(DIR) all: $(MAS) +build: $(MAS) + $(H)echo Legacy-2/theory.ma `../../matitadep.opt -stdout Legacy-2/theory.ma` >> depends +# $(H)echo Base-2/theory.ma `../../matitadep.opt -stdout Base-2/theory.ma` >> depends $(H)../../matitac $(MATITAOPTIONS) 2> /dev/null -$(DIR).opt opt all.opt: $(MAS) + $(H)rm depends + +build.opt: $(MAS) + $(H)echo Legacy-2/theory.ma `../../matitadep.opt -stdout Legacy-2/theory.ma` >> depends +# $(H)echo Base-2/theory.ma `../../matitadep.opt -stdout Base-2/theory.ma` >> depends $(H)../../matitac.opt $(MATITAOPTIONS) 2> /dev/null + $(H)rm depends + clean: - $(H)../../matitaclean - $(H)rm -f $(MAS) - $(H)$(MAKE) depend + $(H)../../matitaclean $(MATITAOPTIONS) + $(H)rm -f $(MAS) depends + clean.opt: - $(H)../../matitaclean.opt - $(H)rm -f $(MAS) - $(H)$(MAKE) depend.opt + $(H)../../matitaclean.opt $(MATITAOPTIONS) + $(H)rm -f $(MAS) depends + +clean.ma: + $(H)../../matitaclean.opt $(MATITAOPTIONS) $(MAS) + $(H)rm -f $(MAS) depends + depend: - $(H)../../matitadep - $(H)cat Base-2/depends >> depends + @echo matitadep + $(H)../../matitadep $(foreach FILE,$(XMAS),-exclude $(FILE)) + $(H)cat Legacy-2/depends >> depends # Base-2/depends + depend.opt: - $(H)../../matitadep.opt - $(H)cat Base-2/depends >> depends + @echo matitadep.opt + $(H)../../matitadep.opt $(foreach FILE,$(XMAS),-exclude $(FILE)) + $(H)cat Legacy-2/depends >> depends # Base-2/depends + +depends: depend.opt + +%.ma: %.mma + $(H)../../matitac.opt $(MATITAOPTIONS) $(word 3,$(shell grep -h $< */depends)) `../../matitadep.opt -stdout $<` 2> /dev/null + $(H)../../matitac.opt $(MATITAOPTIONS) -dump $@ $< 2> /dev/null + $(H)echo $@ `../../matitadep.opt -stdout $@` >> depends -include Base-2/.depend +include Legacy-2/.depend +# include Base-2/.depend