Changeset 2739 in Sophya for trunk/SophyaLib/BuildMgr/configure
- Timestamp:
- May 20, 2005, 9:28:55 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/BuildMgr/configure
r2726 r2739 34 34 echo 'configure [-sbase SOPHYABASE] [-scxx SOPHYACXX] [-incln] [-minc mymake.inc] ' 35 35 echo ' [-extp dir1 -extp dir2 ...] [-extip dir1 -extip dir2 ... ] [-extlp dir1 -extlp dir2 ... ]' 36 echo ' [-noext fits -noext fftw -noext lapack -noext astro -noext minuit]'36 echo ' [-noextlib -noext fits -noext fftw -noext lapack -noext astro -noext minuit]' 37 37 exit -1 38 38 endif … … 63 63 set extpathlib = ( $extpathlib $2 ) 64 64 shift 65 endif 66 if( "$1" == "-noextlib" ) then 67 set i = 0 68 while ( $i < $#SOPEXTOK ) 69 @ i += 1 70 set SOPEXTOK[$i] = 0 71 end 65 72 endif 66 73 if( "$1" == "-noext" ) then … … 172 179 set file 173 180 foreach f ( *.h ) 174 grep "$f" excludeinc > /dev/null181 grep -q "$f:r\.h" excludeinc 175 182 if( $status != 0 ) set file = ( $file $f ) 176 183 end … … 350 357 echo " 7.b/ Creating $objlistname " 351 358 rm -f $objlistname ; touch $objlistname 352 foreach d ( $SOPEXT ) 353 if ( -d ../$d ) then 354 cat ../$d/objlist.list >> $objlistname 355 endif 356 end 359 set i = 0 360 while ( $i < $#SOPEXT ) 361 @ i += 1 362 if( $SOPEXTOK[$i] <= 0 ) continue 363 set d = $SOPEXT[$i] 364 if ( ! -d ../$d ) continue 365 cat ../$d/objlist.list >> $objlistname 366 end 357 367 358 368 set objlistname = $sconf/libPI.objlist
Note:
See TracChangeset
for help on using the changeset viewer.