New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Changeset 11263 for NEMO/branches/2019/dev_r10984_HPC-13_IRRMANN_BDY_optimization/doc/tools – NEMO

Ignore:
Timestamp:
2019-07-12T12:47:53+02:00 (5 years ago)
Author:
smasson
Message:

dev_r10984_HPC-13 : merge with trunk@11242, see #2285

Location:
NEMO/branches/2019/dev_r10984_HPC-13_IRRMANN_BDY_optimization/doc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/2019/dev_r10984_HPC-13_IRRMANN_BDY_optimization/doc

    • Property svn:ignore deleted
  • NEMO/branches/2019/dev_r10984_HPC-13_IRRMANN_BDY_optimization/doc/tools/shr_func.sh

    r11033 r11263  
    11#!/bin/sh 
    2  
    3  
    4 ## Default options for GNU find (Linux OS) 
    5 find_pre=''; find_suf='-regextype posix-extended' 
    6  
    7 ## Test OS to tweak the options in find command for working in extended mode everywhere 
    8 [ '$( uname )' = 'Darwin' ] && { find_pre='-E'; find_suf=''; } 
    92 
    103clean() { 
    114    ## Not sure if this step is needed, guess latexmk should be able to detect a change 
    12     printf "\t¤ Clean previous build\n" 
    13  
    14     ## Delete temp files from previous build 
    15     printf "\t  - delete all temporary files (.aux, .bbl, ...)\n" 
    16     find ${find_pre} latex/$1 ${find_suf}                                                                \ 
    17                          -regex ".*\.(aux|bbl|blg|dvi|fdb|fls|idx|ilg|ind|log|maf|mtc|out|pdf|toc)" \ 
    18                               -exec rm {} \; 
    19  
    20     ## Remove minted folders 
    21     printf "\t  - remove pygments input hash files (\"_minted\" folders)\n" 
    22     find latex/$1 -type d -name '_minted*' -exec rm -r {} \; 2> /dev/null 
     5    printf "\t¤ Clean previous build" 
     6    find latex/$1/build -mindepth 1 -prune -not -name $1_manual.pyg -exec rm -rf {} \; 
    237 
    248    ## HTML exports 
     
    3115build() { 
    3216    printf "\t¤ Generation of the PDF format\n" 
    33     cd latex/$1/main 
    34     latexmk $opts $1'_manual' 1> /dev/null 
    35     [ -f $1'_manual'.pdf ] && mv $1'_manual'.pdf ../../.. 
    36     cd - > /dev/null 
     17    latexmk -r  ./latex/global/latexmkrc  \ 
     18       -cd ./latex/$1/main/$1_manual \ 
     19       1> /dev/null 
     20    [ -f ./latex/$1/build/$1_manual.pdf ] && mv ./latex/$1/build/$1_manual.pdf . 
    3721    echo 
    3822} 
     23 
Note: See TracChangeset for help on using the changeset viewer.