X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fmatita%2Fcontribs%2FLAMBDA-TYPES%2FMakefile;h=28fe09079f84806f751a0a68517b5a4aec05b707;hb=54551ce5acf37f04972291e774d14371a671a8c7;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..28fe09079 100644 --- a/helm/software/matita/contribs/LAMBDA-TYPES/Makefile +++ b/helm/software/matita/contribs/LAMBDA-TYPES/Makefile @@ -1,61 +1,39 @@ include ../Makefile.defs -H=@ - -MATITAOPTIONS=$(MATITAUSEROPTIONS) -onepass - DIR=$(shell basename $$PWD) -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 +H=@ -$(DIR) all: depends - $(H)$(MAKE) H=$(H) --no-print-directory build +MATITAOPTIONS=$(MATITAUSEROPTIONS) -onepass -$(DIR).opt opt all.opt: depends - $(H)$(MAKE) H=$(H) --no-print-directory build.opt +LOG = log.txt -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 +DEVELS = Legacy-2 Base-2 LambdaDelta-2 -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 +MAS = $(shell find $(DEVELS) -mindepth 2 -name "*.ma") +$(DIR) all: + $(H)$(RM) $(LOG) + $(H)$(BIN)matitac $(MATITAOPTIONS) 2>> $(LOG) +$(DIR).opt opt all.opt: + $(H)$(RM) $(LOG) + $(H)$(BIN)matitac.opt $(MATITAOPTIONS) 2>> $(LOG) clean: $(H)$(BIN)matitaclean $(MATITAOPTIONS) - $(H)rm -f $(MAS) depends - + $(H)$(RM) $(MAS) clean.opt: $(H)$(BIN)matitaclean.opt $(MATITAOPTIONS) - $(H)rm -f $(MAS) depends - -clean.ma: - $(H)$(BIN)matitaclean.opt $(MATITAOPTIONS) $(MAS) - $(H)rm -f $(MAS) depends - + $(H)$(RM) $(MAS) depend: - @echo matitadep - $(H)$(BIN)matitadep $(foreach FILE,$(XMAS),-exclude $(FILE)) - $(H)cat Legacy-2/depends Base-2/depends >> depends - + $$(H)(BIN)matitadep $(MATITAOPTIONS) depend.opt: - @echo matitadep.opt - $(H)$(BIN)matitadep.opt $(foreach FILE,$(XMAS),-exclude $(FILE)) - $(H)cat Legacy-2/depends Base-2/depends >> depends - -depends: depend.opt + $(H)$(BIN)matitadep.opt $(MATITAOPTIONS) -%.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)echo $@ `$(BIN)matitadep.opt -stdout $@` >> depends - -include Legacy-2/.depend -include Base-2/.depend +ifneq ($(strip $(MAS)),) +clean.ma: + $(H)$(BIN)matitaclean.opt $(MATITAOPTIONS) $(MAS) + $(H)$(RM) $(MAS) +else +clean.ma: + $(H)echo no files to clean +endif