tests: rename the 'all' target to 'separate' and create a new 'all' target
authorJean-Sebastien Gelinas <calestar@gmail.com>
Sat, 5 Dec 2009 21:17:25 +0000 (16:17 -0500)
committerJean Privat <jean@pryen.org>
Mon, 11 Jan 2010 21:52:35 +0000 (16:52 -0500)
Signed-off-by: Jean-Sebastien Gelinas <calestar@gmail.com>
Signed-off-by: Jean Privat <jean@pryen.org>

tests/Makefile

index d3f8dae..c51421d 100644 (file)
@@ -1,5 +1,5 @@
 
-all:
+separate:
        ./tests.sh *.nit ../examples/*.nit ../src/nitdoc.nit
 
 some:
@@ -11,6 +11,8 @@ global:
 icode:
        ./tests_icode.sh icode*.nit
 
+all: separate global icode
+
 failed:
        @[ ! -s errlist ] && echo 'No failed tests to execute' ; true
        @[ -s errlist ] && ./tests.sh `cat errlist | sort -u` ; true