test: added -j to make
authorMartin PERNER <c0725782@ti18.(none)>
Thu, 4 Nov 2010 11:16:25 +0000 (12:16 +0100)
committerMartin PERNER <c0725782@ti18.(none)>
Thu, 4 Nov 2010 11:16:25 +0000 (12:16 +0100)
3_test/exectest.sh

index 5d1a60b374b9fbf49d9d46706eac0ae77f7a8bdd..eaf8ece6eb81ecfc5e6364747a38ebfa08a7a2c6 100755 (executable)
@@ -10,8 +10,8 @@ cleantools() {
 }
 
 buildtools() {
-       make -C ../3a_asm all
-       make -C ../3b_sim all
+       make -C ../3a_asm -j3 all
+       make -C ../3b_sim -j3 all
 }
 
 runasm() {
@@ -45,6 +45,6 @@ case $1 in
        asm) runasm;;
        sim) runsim;;
        asmsim) runasmsim;;
-       *) echo "first argument must be clean|build|asm <file>|sim <file>"
+       *) echo "first argument must be clean|build|asm <file.s>|sim <file.dthex>|asmsim <file.s>"
 esac