mirror of
https://gitlab.com/fbb-git/cppannotations
synced 2024-11-16 07:48:44 +01:00
12 lines
237 B
Text
12 lines
237 B
Text
|
void man()
|
||
|
{
|
||
|
md("tmp/man");
|
||
|
|
||
|
if ("man/cpp-annotations.yo" younger "tmp/man/cpp-annotations.7")
|
||
|
{
|
||
|
chdir("man");
|
||
|
system("yodl2man -o ../tmp/man/cpp-annotations.7 cpp-annotations");
|
||
|
chdir(g_cwd);
|
||
|
}
|
||
|
}
|