File: make-single-openmp.sh

package info (click to toggle)
ctsim 6.0.2-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,868 kB
  • sloc: cpp: 26,967; sh: 7,782; ansic: 1,256; perl: 296; makefile: 148
file content (8 lines) | stat: -rwxr-xr-x 381 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
#!/bin/sh

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/.)