Selectable size of test parameters
[ctsim.git] / scripts / make-single-openmp.sh
index e8607cb067d4d7268859fbca579b84143dc0ab20..5e9ead1f2756f88ed7de0ce72c8b8ddb3b1d38c3 100755 (executable)
@@ -1,8 +1,8 @@
 #!/bin/sh
 
-DIR=`pwd`
+DIR=/tmp
 rm -rf $DIR/sng $DIR/omp
 mkdir $DIR/sng $DIR/omp
 
-(cd ..; make clean; (./configure --disable-openmp > /dev/null); grep HAVE_OPEN config.h; (make -j 20 > /dev/null); cp tools/ctsimtext src/ctsim $DIR/sng/.)
-(cd ..; make clean; (./configure --enable-openmp > /dev/null); grep HAVE_OPEN config.h; (make -j 20 > /dev/null); cp tools/ctsimtext src/ctsim $DIR/omp/.)
+(cd ..; (make clean > /dev/null); (./configure --disable-openmp > /dev/null); grep HAVE_OPEN config.h; (make -j 20 > /dev/null); cp tools/ctsimtext src/ctsim $DIR/sng/.)
+(cd ..; (make clean > /dev/null); (./configure --enable-openmp > /dev/null); grep HAVE_OPEN config.h; (make -j 20 > /dev/null); cp tools/ctsimtext src/ctsim $DIR/omp/.)