X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fmatita%2Fcontribs%2FLAMBDA-TYPES%2FMakefile;h=e44fbb49acf339c35dbe10dc65136e69a5ae4bae;hb=9ece6e414b255f519426d5643782af4f7dfc584f;hp=a5bf300152540a9a1c0a3ab72a57a06ac08947c1;hpb=3b2361afb73203749541ad07e94648da6057ae67;p=helm.git diff --git a/helm/software/matita/contribs/LAMBDA-TYPES/Makefile b/helm/software/matita/contribs/LAMBDA-TYPES/Makefile index a5bf30015..e44fbb49a 100644 --- a/helm/software/matita/contribs/LAMBDA-TYPES/Makefile +++ b/helm/software/matita/contribs/LAMBDA-TYPES/Makefile @@ -4,30 +4,33 @@ H=@ MATITAOPTIONS=$(MATITAUSEROPTIONS) -onepass -DIR=$(shell basename $$PWD) +LOG = log.txt -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 +DIRS = Legacy-2 Base-2 LambdaDelta-2 -$(DIR) all: depends - $(H)$(MAKE) H=$(H) --no-print-directory build +SILENTMAKE = $(H)$(MAKE) H=$(H) -s --no-print-directory -$(DIR).opt opt all.opt: depends - $(H)$(MAKE) H=$(H) --no-print-directory build.opt +MAS = $(shell find $(DIRS) -mindepth 2 -name "*.ma") -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 +all: depends + $(H)$(RM) $(LOG) + $(SILENTMAKE) build -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 +opt all.opt: depends + $(H)$(RM) $(LOG) + $(SILENTMAKE) build.opt + +%.build.opt: + $(SILENTMAKE) $(patsubst %.mma, %.ma, $(shell find $* -name "*.mma")) + $(H)echo $*/theory.ma `$(BIN)matitadep.opt -stdout $*/theory.ma` >> depends + +build: $(DIRS:%=%.build.opt) + $(H)$(BIN)matitac $(MATITAOPTIONS) 2>> $(LOG) + $(H)$(RM) depends + +build.opt: $(DIRS:%=%.build.opt) + $(H)$(BIN)matitac.opt $(MATITAOPTIONS) 2>> $(LOG) + $(H)$(RM) depends clean: $(H)$(BIN)matitaclean $(MATITAOPTIONS) @@ -39,26 +42,27 @@ clean.opt: clean.ma: $(H)$(BIN)matitaclean.opt $(MATITAOPTIONS) $(MAS) - $(H)rm -f $(MAS) depends + $(H)$(RM) $(MAS) depends + + +clean.mma: +# $(H)for FILE in */*.mma ; do if [ -e ../LambdaDelta-1/$${FILE/.mma/.ma} ] ; then true ; else rm $$FILE ; fi done depend: @echo matitadep - $(H)$(BIN)matitadep $(foreach FILE,$(XMAS),-exclude $(FILE)) - $(H)cat Legacy-2/depends >> depends -# Base-2/depends - + $(H)$(BIN)matitadep $(foreach DIR, $(DIRS), -exclude $(DIR)/theory.ma) + $(H)cat $(DIRS:%=%/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)$(BIN)matitadep.opt $(foreach DIR, $(DIRS), -exclude $(DIR)/theory.ma) + $(H)cat $(DIRS:%=%/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 +$(foreach DIR, $(DIRS), $(eval include $(DIR)/.depend))