Revision | 15a604cf6b326b0594e2a94b94eb1618fcbd80d9 (tree) |
---|---|
Time | 2008-07-03 20:00:55 |
Author | iselllo |
Commiter | iselllo |
I added the file Makefile which I can use to start many jobs
simultaneously once I expecify a pool.
@@ -0,0 +1,19 @@ | ||
1 | +all: job1 job2 job3 job4 job5 job6 | |
2 | + | |
3 | +job1: | |
4 | + (cd ./1/; ./Espresso test_interaction.tcl) | |
5 | + | |
6 | +job2: | |
7 | + (cd ./2/; ./Espresso test_interaction.tcl) | |
8 | + | |
9 | +job3: | |
10 | + (cd ./3/; ./Espresso test_interaction.tcl) | |
11 | + | |
12 | +job4: | |
13 | + (cd ./4/; ./Espresso test_interaction.tcl) | |
14 | + | |
15 | +job5: | |
16 | + (cd ./5/; ./Espresso test_interaction.tcl) | |
17 | + | |
18 | +job6: | |
19 | + (cd ./6/; ./Espresso test_interaction.tcl) | |
\ No newline at end of file |