added build directory to ignore list and simplified dir layout

This commit is contained in:
Martin Diehl 2016-03-05 22:17:59 +01:00
parent c704663476
commit 3d6a034c9e
3 changed files with 11 additions and 10 deletions

1
.gitignore vendored
View File

@ -5,3 +5,4 @@
*.bak
*~
PRIVATE
build

View File

@ -16,10 +16,10 @@ if [ ! -d build ]; then
fi
cd build
if [ -d build_FEM ] ; then
rm -rf build_FEM
rm -rf FEM
fi
mkdir build_FEM
cd build_FEM
mkdir FEM
cd FEM
##
# CMake call
@ -43,4 +43,4 @@ echo
echo "Please move to the build directory using"
echo " cd build/build_spectral"
echo "Using the following command to build DAMASK spectral solver"
echo " make clean all install"
echo " make clean all install"

View File

@ -15,11 +15,11 @@ if [ ! -d build ]; then
mkdir build
fi
cd build
if [ -d build_spectral ] ; then
rm -rf build_spectral
if [ -d build ] ; then
rm -rf build
fi
mkdir build_spectral
cd build_spectral
mkdir build
cd build
##
# CMake call
@ -41,6 +41,6 @@ cmake -D PETSC_DIR=${PETSC_DIR} \
echo
echo "Please move to the build directory using"
echo " cd build/build_spectral"
echo " cd build/spectral"
echo "Using the following command to build DAMASK spectral solver"
echo " make clean all install"
echo " make clean all install"