ref: fc61225e10b7a6acfcdbda0f4b4a25e2bcb821b4
dir: /examples/wscript_build/
# build examples # loop over all *.c filenames in examples to build them all for target_name in bld.path.ant_glob('*.c').split(): # ignore utils.c if target_name in ['utils.c', 'jackio.c', 'sndfileio.c']: continue bld.new_task_gen(features = 'cc cprogram', add_objects = 'utilsio', includes = '../src', uselib = ['LASH', 'JACK', 'SNDFILE'], uselib_local = ['aubio'], source = target_name, # program name is filename.c without the .c target = target_name.split('.')[0])