Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • examples/wscript_build

    r762c7fa r281381f  
    11# vim:set syntax=python:
     2
     3import os.path
    24
    35uselib = ['aubio']
     
    1719# loop over all *.c filenames in examples to build them all
    1820for source_file in programs_source:
     21    target = os.path.basename(os.path.splitext(str(source_file))[0])
    1922    bld(features = 'c cprogram',
    2023            source = source_file,
    21             target = str(source_file).split('.')[0],
     24            target = target,
    2225            includes = includes,
    2326            use = uselib + ['utilsio'],
Note: See TracChangeset for help on using the changeset viewer.