update NOTICE and LICENSE
[nit.git] / tests / Makefile
1
2 all: separate global icode
3
4 separate:
5 ./tests.sh *.nit ../examples/*.nit ../lib/*.nit ../src/nitdoc.nit ../src/nitc.nit ../src/test_parser.nit
6
7 some:
8 ./tests.sh base_compile.nit base_attr.nit base_gen.nit test_gen_inh.nit bench_fib.nit example_objet.nit
9
10 global:
11 ./tests.sh -o --global *.nit ../examples/*.nit ../lib/*.nit ../src/nitdoc.nit ../src/nitc.nit ../src/test_parser.nit
12
13 icode:
14 ./tests_icode.sh icode*.nit
15
16 failed:
17 @[ ! -s errlist ] && echo 'No failed tests to execute' ; true
18 @[ -s errlist ] && ./tests.sh `cat errlist | sort -u` ; true
19
20 store:
21 ./store_save.sh *.nit
22
23 clean:
24 @rm -r -f -- *.bin *.res *.write *.err *.log alt || true