- Timestamp:
- Mar 2, 2005, 12:54:07 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/doc/orxodox.checkFiles.pl
r3447 r3448 1 1 #!/usr/bin/perl 2 ########################################################################## 3 # orxonox - the future of 3D-vertical-scrollers # 4 # # 5 # Copyright (C) 2004 orx # 6 # # 7 # This program is free software; you can redistribute it and/or modify # 8 # it under the terms of the GNU General Public License as published by # 9 # the Free Software Foundation; either version 2, or (at your option) # 10 # any later version. # 11 # # 12 # ### File Specific: # 13 # main-programmer: Benjamin Grauer # 14 # co-programmer: ... # 15 # # 16 # This Script is for parsing single or multiple files for their # 17 # doxygeb-tags, and outputs the warnings and errors, but prehibits # 18 # the progress from being displayed. # 19 # Usage: ./orxodox.checkFiles.pl [fileName1 [fileName2 [...]]] # 20 # This script ignores file-extensions, and assumes that either # 21 # .h, .cc or both may exist, and searches for them. # 22 ########################################################################## 2 23 3 24 $inputFiles = @ARGV[0]; … … 25 46 $processFiles = "$processFiles $inputFile"; 26 47 $numberOfFiles++; 27 print " ...found .h";48 print "found .h "; 28 49 } 29 50 $inputFile =~ s/\.h$/\.cc/; … … 32 53 $processFiles = "$processFiles $inputFile"; 33 54 $numberOfFiles++; 34 print "...found .cc ";55 print "...found .cc "; 35 56 } 36 57 if ($tmpNumber == $numberOfFiles) {print "no matching files found";} … … 41 62 die("no Files have been found\n");} 42 63 64 print "==================================================================\n"; 43 65 print "Generating temporary Documentation File\n"; 44 66 print "==================================================================\n"; … … 264 286 close DOXfile; 265 287 288 print "==================================================================\n"; 266 289 print "Generating Documentation of $processFiles\n"; 290 print "==================================================================\n"; 267 291 exec("doxygen $tempDoxFile"); 268 292
Note: See TracChangeset
for help on using the changeset viewer.