testsuite/Makefile: subset targets all-{basic,lib,typing,tool}
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@16547 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02master
parent
54e039901e
commit
e88b2fbf69
|
@ -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)" ]; \
|
||||
|
|
Loading…
Reference in New Issue