X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=matita%2FMakefile;h=48d4e8af8c17d389aed8bbc8f32b91a85b7f765c;hb=c30b48dc423ef9c25473d7b5f211eac018f2f0fa;hp=6f62f254652c8ed9a7b1515d920e1deb896af131;hpb=1b839e0367f89503398442b7990fb6b6d1fa2152;p=helm.git diff --git a/matita/Makefile b/matita/Makefile index 6f62f2546..48d4e8af8 100644 --- a/matita/Makefile +++ b/matita/Makefile @@ -42,6 +42,7 @@ CMOS = \ matitaGeneratedGui.cmo \ matitaMathView.cmo \ matitaGui.cmo \ + matitaAutoGui.cmo \ $(NULL) # objects for matitac (batch compiler) CCMOS = \ @@ -210,7 +211,6 @@ distclean: clean TEST_DIRS = \ legacy \ library \ - library_auto \ tests \ dama \ contribs/CoRN \ @@ -219,11 +219,16 @@ TEST_DIRS = \ contribs/PREDICATIVE-TOPOLOGY \ $(NULL) +# library_auto +TEST_DIRS_OPT = \ + $(TEST_DIRS) \ + $(NULL) + .PHONY: tests tests.opt cleantests cleantests.opt tests: $(foreach d,$(TEST_DIRS),$(d)-test) -tests.opt: $(foreach d,$(TEST_DIRS),$(d)-test-opt) +tests.opt: $(foreach d,$(TEST_DIRS_OPT),$(d)-test-opt) cleantests: $(foreach d,$(TEST_DIRS),$(d)-cleantests) -cleantests.opt: $(foreach d,$(TEST_DIRS),$(d)-cleantests-opt) +cleantests.opt: $(foreach d,$(TEST_DIRS_OPT),$(d)-cleantests-opt) %-test: matitac matitadep matitaclean -cd $* && make -k clean all