mirror of
https://gitlab.com/fbb-git/cppannotations
synced 2024-11-16 07:48:44 +01:00
21 lines
269 B
Text
21 lines
269 B
Text
|
#!/bin/sh
|
||
|
|
||
|
cd ../yo
|
||
|
|
||
|
echo 1>&2 "
|
||
|
Construct .latex file from `pwd`.
|
||
|
Converting .yo to .latex
|
||
|
"
|
||
|
|
||
|
yodl2latex --no-warnings -l3 cplusplus
|
||
|
|
||
|
[ $? -eq 0 ] || exit 1
|
||
|
|
||
|
echo 1>&2 "
|
||
|
Moving .latex file to ../latex
|
||
|
"
|
||
|
|
||
|
mv cplusplus.latex ../latex/cplusplus.latex
|
||
|
|
||
|
../bin/latexonly
|