mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
12 lines
310 B
Bash
Executable File
12 lines
310 B
Bash
Executable File
#! /bin/sh
|
|
|
|
# this script builds the eWoms handbook from its LaTeX sources. The
|
|
# result file is called "ewoms-handbook.pdf"
|
|
|
|
latex ewoms-handbook || exit $?
|
|
bibtex ewoms-handbook || exit $?
|
|
latex ewoms-handbook || exit $?
|
|
latex ewoms-handbook || exit $?
|
|
dvipdf ewoms-handbook || exit $?
|
|
rm ewoms-handbook.dvi
|