Changeset 4655 in orxonox.OLD for orxonox/trunk/scripts
- Timestamp:
 - Jun 18, 2005, 6:57:55 PM (20 years ago)
 - Location:
 - orxonox/trunk/scripts
 - Files:
 - 
          
- 2 edited
 
- 
          gtk-config.osXframework (modified) (2 diffs)
 - 
          orxodox.checkFiles.pl (modified) (2 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
        
orxonox/trunk/scripts/gtk-config.osXframework
r4097 r4655 13 13 usage() 14 14 { 15 cat <<EOF15 cat <<EOF 16 16 Usage: gtk-config [OPTIONS] [LIBRARIES] 17 17 Options: 18 [--prefix[=DIR]]19 [--exec-prefix[=DIR]]20 [--version]21 [--libs]22 [--cflags]18 [--prefix[=DIR]] 19 [--exec-prefix[=DIR]] 20 [--version] 21 [--libs] 22 [--cflags] 23 23 Libraries: 24 gtk25 gthread24 gtk 25 gthread 26 26 EOF 27 exit $127 exit $1 28 28 } 29 29 30 30 if test $# -eq 0; then 31 usage 1 1>&231 usage 1 1>&2 32 32 fi 33 33 … … 80 80 81 81 if test "$echo_prefix" = "yes"; then 82 echo $prefix82 echo $prefix 83 83 fi 84 84 85 85 if test "$echo_exec_prefix" = "yes"; then 86 echo $exec_prefix86 echo $exec_prefix 87 87 fi 88 88  - 
        
orxonox/trunk/scripts/orxodox.checkFiles.pl
r4462 r4655 1 1 #!/usr/bin/perl 2 ########################################################################## 3 # orxonox - the future of 3D-vertical-scrollers #4 # #5 # Copyright (C) 2004 orx #6 # #2 ########################################################################## 3 # orxonox - the future of 3D-vertical-scrollers # 4 # # 5 # Copyright (C) 2004 orx # 6 # # 7 7 # This program is free software; you can redistribute it and/or modify # 8 8 # it under the terms of the GNU General Public License as published by # 9 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 # #10 # any later version. # 11 # # 12 # ### File Specific: # 13 # main-programmer: Benjamin Grauer # 14 # co-programmer: ... # 15 # # 16 16 # This Script is for parsing single or multiple files for their # 17 17 # doxygeb-tags, and outputs the warnings and errors, but prehibits # … … 44 44 if (-e $inputFile) 45 45 { 46 $processFiles = "$processFiles $inputFile";47 $numberOfFiles++;48 print "found .h ";46 $processFiles = "$processFiles $inputFile"; 47 $numberOfFiles++; 48 print "found .h "; 49 49 } 50 50 $inputFile =~ s/\.h$/\.cc/; 51 51 if (-e $inputFile) 52 52 { 53 $processFiles = "$processFiles $inputFile";54 $numberOfFiles++;55 print "...found .cc ";53 $processFiles = "$processFiles $inputFile"; 54 $numberOfFiles++; 55 print "...found .cc "; 56 56 } 57 57 if ($tmpNumber == $numberOfFiles) {print "no matching files found";}  
Note: See TracChangeset
          for help on using the changeset viewer.
      


            






