examples/wscript_build: simplify
authorPaul Brossier <piem@piem.org>
Thu, 17 Oct 2013 12:10:33 +0000 (14:10 +0200)
committerPaul Brossier <piem@piem.org>
Thu, 17 Oct 2013 12:10:33 +0000 (14:10 +0200)
examples/wscript_build

index 9f797e0..1ef6387 100644 (file)
@@ -13,7 +13,7 @@ for source_file in ctx.path.ant_glob('*.c', excl = ['utils.c', 'jackio.c']):
   bld.program(features = 'c cprogram',
       includes = '../src',
       lib = 'm',
-      use = ['aubio', 'FFTW3F', 'FFTW3', 'SNDFILE', 'JACK', 'LASH', 'SAMPLERATE', 'utilsio'],
+      use = ['aubio', 'utilsio'],
       source = str(source_file),
       target = str(source_file).split('.')[0]
     )