examples/wscript_build: update
authorPaul Brossier <piem@piem.org>
Mon, 9 Jul 2012 22:36:16 +0000 (15:36 -0700)
committerPaul Brossier <piem@piem.org>
Mon, 9 Jul 2012 22:36:16 +0000 (15:36 -0700)
examples/wscript_build

index e3b1a81cb05ff54fce46994af3296f77e3481f5e..ec55aca464315a3a559737282bdd0ec7062ffad3 100644 (file)
@@ -1,24 +1,25 @@
-if bld.env['SNDFILE']:
-  # build examples
-  sndfileio = bld.new_task_gen(features = 'c',
-      includes = '../src',
-      source = ['sndfileio.c'],
-      target = 'sndfileio')
+# vim:set syntax=python:
+
+# build examples
+sndfileio = bld.new_task_gen(features = 'c',
+    includes = '../src',
+    source = ['sndfileio.c'],
+    target = 'sndfileio')
 
-  utilsio = bld.new_task_gen(features = 'c',
-        includes = '../src',
-        add_objects = 'sndfileio',
-        source = ['utils.c', 'jackio.c'],
-        uselib = ['LASH', 'JACK', 'SNDFILE'],
-        target = 'utilsio')
+utilsio = bld.new_task_gen(name = 'utilsio', features = 'c',
+      includes = '../src',
+      add_objects = 'sndfileio',
+      source = ['utils.c', 'jackio.c'],
+      uselib = ['LASH', 'JACK', 'SNDFILE'],
+      target = 'utilsio')
 
-  # loop over all *.c filenames in examples to build them all
-  for target_name in bld.path.ant_glob('*.c', excl = ['utils.c', 'jackio.c', 'sndfileio.c']):
-    bld.new_task_gen(features = 'c cprogram',
-        add_objects = 'utilsio',
-        includes = '../src',
-        uselib = ['LASH', 'JACK', 'SNDFILE'],
-        use = 'aubio',
-        source = target_name,
-        # program name is filename.c without the .c
-        target = str(target_name).split('.')[0])
+# loop over all *.c filenames in examples to build them all
+for target_name in bld.path.ant_glob('*.c', excl = ['utils.c', 'jackio.c', 'sndfileio.c']):
+  bld.new_task_gen(features = 'c cprogram',
+      add_objects = 'utilsio',
+      includes = '../src',
+      uselib = ['LASH', 'JACK', 'SNDFILE'],
+      use = 'aubio',
+      source = target_name,
+      # program name is filename.c without the .c
+      target = str(target_name).split('.')[0])