]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/matita/contribs/LAMBDA-TYPES/Makefile
more work, but russell too slow
[helm.git] / helm / software / matita / contribs / LAMBDA-TYPES / Makefile
index 7edd288175fa5f33afdbba7d34b125aceed81dd7..9608434b6afc4f115a1e431456bada8527380578 100644 (file)
@@ -6,27 +6,31 @@ MATITAOPTIONS=$(MATITAUSEROPTIONS) -onepass
 
 DIR=$(shell basename $$PWD)
 
-MMAS = $(shell find Legacy-2 -name "*.mma") # Base-2 
+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
+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)echo Base-2/theory.ma `$(BIN)matitadep.opt -stdout Base-2/theory.ma` >> 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)echo Base-2/theory.ma `$(BIN)matitadep.opt -stdout Base-2/theory.ma` >> depends
+       $(H)$(BIN)matitac.opt $(MATITAOPTIONS) 2>> $(LOG)
+       $(H)$(RM) depends
 
 clean:
        $(H)$(BIN)matitaclean $(MATITAOPTIONS)
@@ -43,19 +47,19 @@ clean.ma:
 depend:
        @echo matitadep
        $(H)$(BIN)matitadep $(foreach FILE,$(XMAS),-exclude $(FILE))
-       $(H)cat Legacy-2/depends >> depends # Base-2/depends
+       $(H)cat Legacy-2/depends Base-2/depends >> depends
        
 depend.opt:
        @echo matitadep.opt
        $(H)$(BIN)matitadep.opt $(foreach FILE,$(XMAS),-exclude $(FILE))
-       $(H)cat Legacy-2/depends >> depends # Base-2/depends
+       $(H)cat Legacy-2/depends Base-2/depends >> depends
 
 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
-include Base-2/.depend
+include Base-2/.depend