X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;ds=sidebyside;f=helm%2Fsoftware%2Fmatita%2Fcontribs%2FLAMBDA-TYPES%2FMakefile;h=9608434b6afc4f115a1e431456bada8527380578;hb=25aa80d913c903fcc270d05464cf3084b12d52a8;hp=fb55d67825a0e66712a1a6e783b68115692d1eeb;hpb=813f73e76fb7374987ea1e826bcd6f15e22377d9;p=helm.git diff --git a/helm/software/matita/contribs/LAMBDA-TYPES/Makefile b/helm/software/matita/contribs/LAMBDA-TYPES/Makefile index fb55d6782..9608434b6 100644 --- a/helm/software/matita/contribs/LAMBDA-TYPES/Makefile +++ b/helm/software/matita/contribs/LAMBDA-TYPES/Makefile @@ -6,27 +6,31 @@ MATITAOPTIONS=$(MATITAUSEROPTIONS) -onepass DIR=$(shell basename $$PWD) +LOG = log.txt + MMAS = $(shell find Legacy-2 Base-2 -name "*.mma") MAS = $(MMAS:%.mma=%.ma) XMAS = Legacy-2/theory.ma Base-2/theory.ma LambdaDelta-2/theory.ma $(DIR) all: depends + $(H)$(RM) $(LOG) $(H)$(MAKE) H=$(H) --no-print-directory build $(DIR).opt opt all.opt: depends + $(H)$(RM) $(LOG) $(H)$(MAKE) H=$(H) --no-print-directory build.opt build: $(MAS) $(H)echo Legacy-2/theory.ma `$(BIN)matitadep.opt -stdout Legacy-2/theory.ma` >> depends $(H)echo Base-2/theory.ma `$(BIN)matitadep.opt -stdout Base-2/theory.ma` >> depends - $(H)$(BIN)matitac $(MATITAOPTIONS) 2> /dev/null - $(H)rm depends + $(H)$(BIN)matitac $(MATITAOPTIONS) 2>> $(LOG) + $(H)$(RM) depends build.opt: $(MAS) $(H)echo Legacy-2/theory.ma `$(BIN)matitadep.opt -stdout Legacy-2/theory.ma` >> depends $(H)echo Base-2/theory.ma `$(BIN)matitadep.opt -stdout Base-2/theory.ma` >> depends - $(H)$(BIN)matitac.opt $(MATITAOPTIONS) 2> /dev/null - $(H)rm depends + $(H)$(BIN)matitac.opt $(MATITAOPTIONS) 2>> $(LOG) + $(H)$(RM) depends clean: $(H)$(BIN)matitaclean $(MATITAOPTIONS) @@ -53,8 +57,8 @@ depend.opt: depends: depend.opt %.ma: %.mma - $(H)$(BIN)matitac.opt $(MATITAOPTIONS) $(word 3,$(shell grep -h $< */depends)) `$(BIN)matitadep.opt -stdout $<` 2> /dev/null - $(H)$(BIN)matitac.opt $(MATITAOPTIONS) -dump $@ $< 2> /dev/null + $(H)$(BIN)matitac.opt $(MATITAOPTIONS) $(word 3,$(shell grep -h $< */depends)) `$(BIN)matitadep.opt -stdout $<` 2>> $(LOG) + $(H)$(BIN)matitac.opt $(MATITAOPTIONS) -dump $@ $< 2>> $(LOG) $(H)echo $@ `$(BIN)matitadep.opt -stdout $@` >> depends include Legacy-2/.depend