testsuite/Makefile: subset targets all-{basic,lib,typing,tool}

git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@16547 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
master
Gabriel Scherer 2015-10-25 16:24:49 +00:00
parent 54e039901e
commit e88b2fbf69
1 changed files with 24 additions and 0 deletions

View File

@ -35,6 +35,30 @@ all: lib
done 2>&1 | tee _log
@$(MAKE) report
all-basic: lib
@for dir in tests/basic-*; do \
$(MAKE) $(NO_PRINT) exec-one DIR=$$dir; \
done 2>&1 | tee _log
@$(MAKE) report
all-lib: lib
@for dir in tests/lib-*; do \
$(MAKE) $(NO_PRINT) exec-one DIR=$$dir; \
done 2>&1 | tee _log
@$(MAKE) report
all-typing: lib
@for dir in tests/typing-*; do \
$(MAKE) $(NO_PRINT) exec-one DIR=$$dir; \
done 2>&1 | tee _log
@$(MAKE) report
all-tool: lib
@for dir in tests/tool-*; do \
$(MAKE) $(NO_PRINT) exec-one DIR=$$dir; \
done 2>&1 | tee _log
@$(MAKE) report
.PHONY: list
list: lib
@if [ -z "$(FILE)" ]; \