]> matita.cs.unibo.it Git - helm.git/commitdiff
Base-2 is not compiling properly and is excluded for now
authorFerruccio Guidi <ferruccio.guidi@unibo.it>
Thu, 20 Mar 2008 18:26:49 +0000 (18:26 +0000)
committerFerruccio Guidi <ferruccio.guidi@unibo.it>
Thu, 20 Mar 2008 18:26:49 +0000 (18:26 +0000)
helm/software/matita/contribs/LAMBDA-TYPES/Makefile

index 32da5d327e660c895975b3c3bc8ae942ad278fab..754dde6215383ad9b15a15202586e8ed62602f58 100644 (file)
@@ -4,9 +4,9 @@ MATITAOPTIONS=$(MATITAUSEROPTIONS) -onepass
 
 DIR=$(shell basename $$PWD)
 
-MMAS = $(shell find Legacy-2 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
+XMAS = Legacy-2/theory.ma Base-2/theory.ma LambdaDelta-2/theory.ma
 
 $(DIR) all: depends
        $(H)$(MAKE) H=$(H) --no-print-directory build
@@ -16,13 +16,13 @@ $(DIR).opt opt all.opt: depends
 
 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)echo Base-2/theory.ma `../../matitadep.opt -stdout Base-2/theory.ma` >> depends
        $(H)../../matitac $(MATITAOPTIONS) 2> /dev/null
        $(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)echo Base-2/theory.ma `../../matitadep.opt -stdout Base-2/theory.ma` >> depends
        $(H)../../matitac.opt $(MATITAOPTIONS) 2> /dev/null
        $(H)rm depends
 
@@ -41,12 +41,12 @@ clean.ma:
 depend:
        @echo matitadep
        $(H)../../matitadep $(foreach FILE,$(XMAS),-exclude $(FILE))
-       $(H)cat Legacy-2/depends Base-2/depends >> depends
+       $(H)cat Legacy-2/depends >> depends # Base-2/depends
        
 depend.opt:
        @echo matitadep.opt
        $(H)../../matitadep.opt $(foreach FILE,$(XMAS),-exclude $(FILE))
-       $(H)cat Legacy-2/depends Base-2/depends >> depends
+       $(H)cat Legacy-2/depends >> depends # Base-2/depends
 
 depends: depend.opt
 
@@ -56,4 +56,4 @@ depends: depend.opt
        $(H)echo $@ `../../matitadep.opt -stdout $@` >> depends
 
 include Legacy-2/.depend
-include Base-2/.depend
+include Base-2/.depend