mirror of
https://gitlab.com/fbb-git/cppannotations
synced 2024-11-16 07:48:44 +01:00
14 lines
282 B
Text
14 lines
282 B
Text
void latex()
|
|
{
|
|
md("tmp/docs/latex");
|
|
|
|
system("rm -f tmp/cplusplus*-stamp tmp/_cplusplus*-stamp tmp/dvi*-stamp "
|
|
"tmp/docs/latex/cplusplus*");
|
|
|
|
latexdoc("", 0);
|
|
latexdoc("us", 0);
|
|
|
|
printf("the log files are in tmp/docs/latex\n");
|
|
|
|
exit(0);
|
|
}
|