mirror of
https://gitlab.com/fbb-git/cppannotations
synced 2024-11-16 07:48:44 +01:00
c31d862faf
git-svn-id: https://cppannotations.svn.sourceforge.net/svnroot/cppannotations/trunk@10 f6dd340e-d3f9-0310-b409-bdd246841980
11 lines
237 B
Bash
11 lines
237 B
Bash
void man()
|
|
{
|
|
md("tmp/man");
|
|
|
|
if ("man/c++-annotations.yo" younger "tmp/man/c++-annotations.7")
|
|
{
|
|
chdir("man");
|
|
system("yodl2man -o ../tmp/man/c++-annotations.7 c++-annotations");
|
|
chdir(g_cwd);
|
|
}
|
|
}
|