mirror of
https://github.com/ParticulateFlow/CFDEMcoupling-PFM.git
synced 2025-12-08 06:37:44 +00:00
32 lines
1.1 KiB
Bash
Executable File
32 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
#===================================================================#
|
|
# compile routine for CFDEMcoupling, part of CFDEMproject
|
|
# Christoph Goniva - May. 2012, DCS Computing GmbH
|
|
#===================================================================#
|
|
|
|
#- include functions
|
|
source $CFDEM_PROJECT_DIR/etc/functions.sh
|
|
|
|
NOW="$(date +"%Y-%m-%d-%H:%M")"
|
|
logDir="log"
|
|
|
|
|
|
cd $CFDEM_PROJECT_DIR/etc
|
|
mkdir -p $logDir
|
|
|
|
#================================================================================#
|
|
# compile src
|
|
#================================================================================#
|
|
bash $CFDEM_PROJECT_DIR/etc/compileCFDEMcoupling_src.sh
|
|
|
|
#================================================================================#
|
|
# compile solvers
|
|
#================================================================================#
|
|
bash $CFDEM_PROJECT_DIR/etc/compileCFDEMcoupling_sol.sh
|
|
|
|
#================================================================================#
|
|
# compile utilities
|
|
#================================================================================#
|
|
bash $CFDEM_PROJECT_DIR/etc/compileCFDEMcoupling_uti.sh
|