X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fmatita%2Fcontribs%2FLAMBDA-TYPES%2FMakefile;h=c0805522d04b2c5efca292fbffa0a9b3978056ee;hb=076f639446efce8d8cf83dcf7ca40b4376fc8c36;hp=a2a3b8eecf9a47b97b76df10c30ca63933b0e04c;hpb=a2257181cddf84a3b831c50398f5b13e2b79ac3a;p=helm.git diff --git a/helm/software/matita/contribs/LAMBDA-TYPES/Makefile b/helm/software/matita/contribs/LAMBDA-TYPES/Makefile index a2a3b8eec..c0805522d 100644 --- a/helm/software/matita/contribs/LAMBDA-TYPES/Makefile +++ b/helm/software/matita/contribs/LAMBDA-TYPES/Makefile @@ -6,31 +6,35 @@ DIR=$(shell basename $$PWD) MMAS = $(shell find Base-2 -name "*.mma") MAS = $(MMAS:%.mma=%.ma) -XMAS = Base-2/theory.ma pippo +XMAS = Base-2/theory.ma LambdaDelta-2/theory.ma -%.ma: %.mma - $(H)../../matitac.opt $(MATITAOPTIONS) `../../matitadep.opt -stdout $<` 2> /dev/null - $(H)../../matitac.opt $(MATITAOPTIONS) -dump $@ $< 2> /dev/null - $(H)$(MAKE) --no-print-directory depend.opt +$(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 -$(DIR) all: $(MAS) - $(H)$(MAKE) --no-print-directory depend.full +build: $(MAS) + $(H)$echo Base-2/theory.ma `../../matitadep.opt -stdout Base-2/theory.ma` >> depends $(H)../../matitac $(MATITAOPTIONS) 2> /dev/null -$(DIR).opt opt all.opt: $(MAS) - $(H)$(MAKE) --no-print-directory depend.full.opt + $(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 + clean: - $(H)../../matitaclean - $(H)rm -f $(MAS) - $(H)$(MAKE) --no-print-directory depend + $(H)../../matitaclean $(MATITAOPTIONS) + $(H)rm -f $(MAS) depends + clean.opt: - $(H)../../matitaclean.opt - $(H)rm -f $(MAS) - $(H)$(MAKE) --no-print-directory depend.opt + $(H)../../matitaclean.opt $(MATITAOPTIONS) + $(H)rm -f $(MAS) depends + clean.ma: - $(H)../../matitaclean.opt $(MAS) - $(H)rm -f $(MAS) - $(H)$(MAKE) --no-print-directory depend.opt + $(H)../../matitaclean.opt $(MATITAOPTIONS) $(MAS) + $(H)rm -f $(MAS) depends depend: @echo matitadep @@ -40,13 +44,12 @@ depend.opt: @echo matitadep.opt $(H)../../matitadep.opt $(foreach FILE,$(XMAS),-exclude $(FILE)) $(H)cat Base-2/depends >> depends -depend.full: - @echo matitadep - $(H)../../matitadep - $(H)cat Base-2/depends >> depends -depend.full.opt: - @echo matitadep.opt - $(H)../../matitadep.opt - $(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