summaryrefslogtreecommitdiff
path: root/bin/count_lines
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-07-26 18:49:04 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-07-26 18:49:04 +0000
commit2d349f8b307436c9298a4f323339880e01d99cc0 (patch)
treea979bf8ec95842952032b33d1623fbf0b9921b91 /bin/count_lines
parentfef205d08dfdb03b9b52d28798eb0e1fe71c4229 (diff)
downloadATCD-2d349f8b307436c9298a4f323339880e01d99cc0.tar.gz
ChangeLogTag:Thu Jul 26 11:48:16 2001 Carlos O'Ryan <coryan@uci.edu>
Diffstat (limited to 'bin/count_lines')
-rwxr-xr-xbin/count_lines12
1 files changed, 11 insertions, 1 deletions
diff --git a/bin/count_lines b/bin/count_lines
index 49c541094df..e2ba66d945f 100755
--- a/bin/count_lines
+++ b/bin/count_lines
@@ -142,6 +142,7 @@ sub initfiletypes {
local %filenames =
('Makefile' => 'Makefile',
+ 'Makefile.*' => 'Makefile',
'README' => 'README files',
'COPYING' => 'Licenses',
'LICENSE.*' => 'Licenses',
@@ -155,6 +156,7 @@ sub initfiletypes {
local %fileexts =
('cc' => 'C++ sources',
'cpp' => 'C++ sources',
+ 'inl' => 'C++ sources',
'i' => 'C++ sources',
'h' => 'Headers',
'hh' => 'Headers',
@@ -166,6 +168,7 @@ sub initfiletypes {
'yy' => 'yacc source',
'l' => 'lex source',
'll' => 'lex source',
+ 'pm' => 'perl script',
'pl' => 'perl script',
'perl' => 'perl script',
'GNU' => 'GNU make config',
@@ -177,7 +180,14 @@ sub initfiletypes {
'bib' => 'BibTeX',
'sty' => 'TeX styles',
'bld' => 'VxWorks build file',
+ 'am' => 'Automake file',
+ 'icc' => 'VisualAge project files',
+ 'icp' => 'VisualAge project files',
+ 'vac' => 'VisualAge project files',
+ 'vcp' => 'Microsof eMbedded Visual Tools project files',
+ 'vcw' => 'Microsof eMbedded Visual Tools project files',
'bpr' => 'Borland project files',
+ 'bor' => 'Borland project files',
'dsp' => 'DevStudio project files',
'DSP' => 'DevStudio project files',
'mdp' => 'MSVC project files',
@@ -216,7 +226,7 @@ sub initfiletypes {
updateRE($desc, $re);
}
- updateRE('Others', '.*');
+ updateRE('Others', '.*');
# while (($desc, $reseed) = each %typeRE) {
# print STDERR $desc, " ==> ", $reseed, "\n";