Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3448 in orxonox.OLD for orxonox/trunk/doc/orxodox.checkFiles.pl


Ignore:
Timestamp:
Mar 2, 2005, 12:54:07 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: typo

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/doc/orxodox.checkFiles.pl

    r3447 r3448  
    11#!/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##########################################################################
    223
    324$inputFiles = @ARGV[0];
     
    2546        $processFiles = "$processFiles $inputFile";
    2647        $numberOfFiles++;
    27         print "...found .h";
     48        print "found .h ";
    2849      }
    2950    $inputFile =~ s/\.h$/\.cc/;
     
    3253        $processFiles = "$processFiles $inputFile";
    3354        $numberOfFiles++;
    34         print "...found .cc";
     55        print "...found .cc ";
    3556      }
    3657    if ($tmpNumber == $numberOfFiles) {print "no matching files found";}
     
    4162  die("no Files have been found\n");}
    4263
     64print "==================================================================\n";
    4365print "Generating temporary Documentation File\n";
    4466print "==================================================================\n";
     
    264286close DOXfile;
    265287
     288print "==================================================================\n";
    266289print "Generating Documentation of $processFiles\n";
     290print "==================================================================\n";
    267291exec("doxygen $tempDoxFile");
    268292
Note: See TracChangeset for help on using the changeset viewer.