1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-12 20:27:06 +01:00

Moved things around

This commit is contained in:
Peter Boyle
2015-05-16 06:40:10 +01:00
parent 2e4ba02443
commit 462bafdd2c
5 changed files with 41 additions and 22 deletions

11
scripts/build-all Executable file
View File

@ -0,0 +1,11 @@
#!/bin/bash
DIRS="build-clang-avx build-clang-avx-openmp build-clang-avx-openmp-mpi build-clang-avx-mpi build-icpc-avx512 build-icpc-avx "
for D in $DIRS
do
echo $D
cd builds/$D
make clean all -j 8
cd ../../
done