Changeset 5356 for trunk/fsource/SConstruct
- Timestamp:
- Oct 24, 2022 1:45:40 PM (8 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/fsource/SConstruct
r5355 r5356 382 382 installcmd = "copy $TARGET " + InstallLoc 383 383 else: 384 installcmd = "cp $TARGET " + InstallLoc384 installcmd = "cp -p $TARGET " + InstallLoc 385 385 return [cmd, installcmd] 386 386 env.Append(BUILDERS = {'nist' : Builder(generator = generate_nist)},) … … 423 423 filename = str(lib[0]) 424 424 425 # NIST*LATTICE programs426 for src in 'LATTIC.f','convcell.f':427 target = os.path.splitext(src)[0] + EXEsuffix428 out = env.nist(target,src)429 Clean(out, target)430 Depends(target, NISTlib) # make sure library is rebuilt if old431 432 425 # find modules that need to be built 433 426 modlist = [] … … 439 432 Depends(target, liblist) # make sure libraries are rebuilt if old 440 433 modlist.append(out[0].name) 434 435 # NIST*LATTICE programs 436 for src in 'LATTIC.f','convcell.f': 437 target = os.path.splitext(src)[0] + EXEsuffix 438 out = env.nist(target,src) 439 Clean(out, target) 440 Depends(target, NISTlib) # make sure library is rebuilt if old 441 441 #========================================================================================== 442 442 # all done with setup, show the user the options and let scons do the work
Note: See TracChangeset
for help on using the changeset viewer.