Skip to content
Snippets Groups Projects
Allwmake 443 B
Newer Older
  • Learn to ignore specific revisions
  • cd ${0%/*} || exit 1    # run from this directory
    
    if [ -d "$ParaView_DIR" -a -r "$ParaView_DIR" ]
    then
       case "$ParaView_VERSION" in
       2*)
          wmake libso vtkFoam
          (
             cd PVFoamReader
             mkdir -p Make/$WM_OPTIONS > /dev/null 2>&1
             cd Make/$WM_OPTIONS
             cmake ../..
             make
          )
          ;;
       esac
    
    
    # ----------------------------------------------------------------- end-of-file