Show
Ignore:
Timestamp:
07/03/09 14:23:23 (5 months ago)
Author:
kumudb
Message:

all executable works including cpi in examples and mpiexec in pm

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • mpich2/branches/dev/kumudb/maint/simplemake.in

    r4898 r4899  
    33973397} 
    33983398 
    3399  
     3399#-------------------Kumud_parallel_fix----------------------------- 
    34003400# Generate the target all-executable-local 
    34013401sub TargetProgramsLocal { 
    3402     print FD "all-executable-local:"; 
    3403     foreach $pgm (keys (%programs)) { 
    3404         if (defined($extra_programs{$pgm})) { next; } 
    3405         if (defined($extra_libs{$pgm})) { next; } 
    3406         print FD " $pgm"; 
    3407     } 
    3408     print FD "$newline"; 
    3409 } 
     3402    if (!defined($usertargets{"all-executable-local"})) {  
     3403        print FD "all-executable-local:"; 
     3404        foreach $pgm (keys (%programs)) { 
     3405            if (defined($extra_programs{$pgm})) { next; } 
     3406            if (defined($extra_libs{$pgm})) { next; } 
     3407            print FD " $pgm"; 
     3408        } 
     3409        print FD "$newline"; 
     3410    } 
     3411}  
    34103412 
    34113413 
     
    41684170        } 
    41694171    } 
    4170      
    4171  
    4172     
     4172    &TargetPostamble( "executable" );    
    41734173} 
    41744174