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.
shr_func.sh in NEMO/trunk/doc/tools – NEMO

source: NEMO/trunk/doc/tools/shr_func.sh @ 11120

Last change on this file since 11120 was 11120, checked in by nicolasmartin, 5 years ago

Modification of the building process with dedicated build sub-folder

  • Property svn:executable set to *
File size: 597 bytes
Line 
1#!/bin/sh
2
3clean() {
4    ## Not sure if this step is needed, guess latexmk should be able to detect a change
5    printf "\t¤ Clean previous build"
6    find latex/$1/build -mindepth 1 -prune -exec rm -rf {} \;
7
8    ## HTML exports
9    #printf '   - possible HTML export'
10    #find latex/$1 -type d -name 'html*'    -exec rm -r {} \;
11
12    echo
13}
14
15build() {
16    printf "\t¤ Generation of the PDF format\n"
17    latexmk $opts -outdir=../build -cd ./latex/$1/main/$1_manual 1> /dev/null
18    [ -f ./latex/$1/build/$1_manual.pdf ] && mv ./latex/$1/build/$1_manual.pdf .
19#    cd - > /dev/null
20    echo
21}
Note: See TracBrowser for help on using the repository browser.