X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Flambda-delta%2FMakefile;h=4982986a3540f93707318606c6a5e2b540455b21;hb=07fb52e761b192a97c6fe00c657e670b2d1fc2f1;hp=cad9761020a3489d55a3a9857add3f20b3793faf;hpb=1ae23fe33b8647a4b8616e666dc5703c17678069;p=helm.git diff --git a/helm/software/lambda-delta/Makefile b/helm/software/lambda-delta/Makefile index cad976102..4982986a3 100644 --- a/helm/software/lambda-delta/Makefile +++ b/helm/software/lambda-delta/Makefile @@ -8,19 +8,31 @@ CLEAN = log.txt include Makefile.common +INPUT = automath/grundlagen.aut + +INPUT-ORIG = automath/grundlagen-orig.aut + test: $(MAIN).opt - @echo " HELENA automath/*.aut" - $(H)./$(MAIN).opt -S 3 $(O) automath/*.aut > log.txt + @echo " HELENA $(INPUT)" + $(H)./$(MAIN).opt -S 3 $(O) $(INPUT) > log.txt + +test-si: $(MAIN).opt + @echo " HELENA -u $(INPUT-ORIG)" + $(H)./$(MAIN).opt -k bag -u -S 3 $(O) $(INPUT-ORIG) > log.txt meta: $(MAIN).opt - @echo " HELENA -m meta.txt automath/*.aut" - $(H)./$(MAIN).opt -m meta.txt -s 1 -S 3 automath/*.aut > /dev/null + @echo " HELENA -m meta.txt $(INPUT)" + $(H)./$(MAIN).opt -m meta.txt -s 1 -S 3 $(INPUT) > /dev/null $(H)$(GZIP) meta.txt ifeq ($(MAKECMDGOALS), test) include .depend.opt endif +ifeq ($(MAKECMDGOALS), test-si) + include .depend.opt +endif + ifeq ($(MAKECMDGOALS), meta) include .depend.opt endif