X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fmatita%2Fcontribs%2FLAMBDA-TYPES%2FMakefile;h=214ce0711b0a281d68f92d2a50a1dcb0a286b2b1;hb=de0eae04721942f08b7281664bfbc26badf5de84;hp=17478c3530b2d5cba427466be8097df6ded18de1;hpb=ebb9c7470956fb56a4cad9dcd4b8491c0ed01fca;p=helm.git diff --git a/helm/software/matita/contribs/LAMBDA-TYPES/Makefile b/helm/software/matita/contribs/LAMBDA-TYPES/Makefile index 17478c353..214ce0711 100644 --- a/helm/software/matita/contribs/LAMBDA-TYPES/Makefile +++ b/helm/software/matita/contribs/LAMBDA-TYPES/Makefile @@ -1,30 +1,55 @@ +H=@ + +MATITAOPTIONS=$(MATITAUSEROPTIONS) -onepass + DIR=$(shell basename $$PWD) -MMAS = $(shell find -name "*.mma") +MMAS = $(shell find Base-2 -name "*.mma") MAS = $(MMAS:%.mma=%.ma) +XMAS = Base-2/theory.ma LambdaDelta-2/theory.ma + +$(DIR) all: depends + $(H)$(MAKE) H=$(H) --no-print-directory build + +$(DIR).opt opt all.opt: depends + $(H)$(MAKE) H=$(H) --no-print-directory build.opt + +build: $(MAS) + $(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 Base-2/theory.ma `../../matitadep.opt -stdout Base-2/theory.ma` >> depends + $(H)../../matitac.opt $(MATITAOPTIONS) 2> /dev/null + $(H)rm depends -%.ma: %.mma - ../../matitac.opt $< 2> /dev/null - ../../matitac.opt -dump $@ $< 2> /dev/null - $(MAKE) depend.opt - -$(DIR) all: $(MAS) - ../../matitac -$(DIR).opt opt all.opt: $(MAS) - ../../matitac.opt clean: - ../../matitaclean - rm -f $(MAS) - $(MAKE) depend + $(H)../../matitaclean $(MATITAOPTIONS) + $(H)rm -f $(MAS) depends + clean.opt: - ../../matitaclean.opt - rm -f $(MAS) - $(MAKE) depend.opt + $(H)../../matitaclean.opt $(MATITAOPTIONS) + $(H)rm -f $(MAS) depends + +clean.ma: + $(H)../../matitaclean.opt $(MATITAOPTIONS) $(MAS) + $(H)rm -f $(MAS) depends + depend: - ../../matitadep - cat Base-2/depends_mma >> depends + @echo matitadep + $(H)../../matitadep $(foreach FILE,$(XMAS),-exclude $(FILE)) + $(H)cat Base-2/depends >> depends depend.opt: - ../../matitadep.opt - cat Base-2/depends_mma >> depends + @echo matitadep.opt + $(H)../../matitadep.opt $(foreach FILE,$(XMAS),-exclude $(FILE)) + $(H)cat Base-2/depends >> depends + +depends: depend.opt + +%.ma: %.mma + $(H)../../matitac.opt $(MATITAOPTIONS) $(word 3,$(shell grep -h $< */depends)) `../../matitadep.opt -stdout $<` 2> /dev/null + $(H)../../matitac.opt $(MATITAOPTIONS) -dump $@ $< 2> /dev/null + $(H)echo $@ `../../matitadep.opt -stdout $@` >> depends include Base-2/.depend