summaryrefslogtreecommitdiffstats
path: root/tmake/example/wc.t
blob: dc041b5da953b6058bfeff4c8786ecfceecb22a4 (plain)
1
2
3
4
5
6
#! Template that count number of C++ lines
The number of C++ code lines for #$ $text=$project_name;
#${
    $files = $project{"HEADERS"} . " " . $project{"SOURCES"};
    $text = `wc -l $files`;
#$}