wscript: try compiling with msvc 10
[aubio.git] / wscript
1 #! /usr/bin/python
2 #
3 # usage:
4 #   $ python waf --help
5 #
6 # example:
7 #   $ ./waf distclean configure build
8 #
9 # Note: aubio uses the waf build system, which relies on Python. Provided you
10 # have Python installed, you do *not* need to install anything to build aubio.
11 # For more info about waf, see http://code.google.com/p/waf/ .
12
13 import sys
14
15 APPNAME = 'aubio'
16
17 from this_version import *
18
19 VERSION = get_aubio_version()
20 LIB_VERSION = get_libaubio_version()
21
22 top = '.'
23 out = 'build'
24
25 def add_option_enable_disable(ctx, name, default = None,
26         help_str = None, help_disable_str = None):
27     if help_str == None:
28         help_str = 'enable ' + name + ' support'
29     if help_disable_str == None:
30         help_disable_str = 'do not ' + help_str
31     ctx.add_option('--enable-' + name, action = 'store_true',
32             default = default,
33             dest = 'enable_' + name.replace('-','_'),
34             help = help_str)
35     ctx.add_option('--disable-' + name, action = 'store_false',
36             #default = default,
37             dest = 'enable_' + name.replace('-','_'),
38             help = help_disable_str )
39
40 def options(ctx):
41     ctx.add_option('--build-type', action = 'store',
42             default = "release",
43             choices = ('debug', 'release'),
44             dest = 'build_type',
45             help = 'whether to compile with (--build-type=release) or without (--build-type=debug) '\
46               ' compiler opimizations [default: release]')
47     add_option_enable_disable(ctx, 'fftw3f', default = False,
48             help_str = 'compile with fftw3f instead of ooura (recommended)',
49             help_disable_str = 'do not compile with fftw3f')
50     add_option_enable_disable(ctx, 'fftw3', default = False,
51             help_str = 'compile with fftw3 instead of ooura',
52             help_disable_str = 'do not compile with fftw3')
53     add_option_enable_disable(ctx, 'complex', default = False,
54             help_str ='compile with C99 complex',
55             help_disable_str = 'do not use C99 complex (default)' )
56     add_option_enable_disable(ctx, 'jack', default = None,
57             help_str = 'compile with jack (auto)',
58             help_disable_str = 'disable jack support')
59     add_option_enable_disable(ctx, 'sndfile', default = None,
60             help_str = 'compile with sndfile (auto)',
61             help_disable_str = 'disable sndfile')
62     add_option_enable_disable(ctx, 'avcodec', default = None,
63             help_str = 'compile with libavcodec (auto)',
64             help_disable_str = 'disable libavcodec')
65     add_option_enable_disable(ctx, 'samplerate', default = None,
66             help_str = 'compile with samplerate (auto)',
67             help_disable_str = 'disable samplerate')
68     add_option_enable_disable(ctx, 'memcpy', default = True,
69             help_str = 'use memcpy hacks (default)',
70             help_disable_str = 'do not use memcpy hacks')
71     add_option_enable_disable(ctx, 'double', default = False,
72             help_str = 'compile in double precision mode',
73             help_disable_str = 'compile in single precision mode (default)')
74     add_option_enable_disable(ctx, 'fat', default = False,
75             help_str = 'build fat binaries (darwin only)',
76             help_disable_str = 'do not build fat binaries (default)')
77     add_option_enable_disable(ctx, 'accelerate', default = None,
78             help_str = 'use Accelerate framework (darwin only) (auto)',
79             help_disable_str = 'do not use Accelerate framework')
80     add_option_enable_disable(ctx, 'apple-audio', default = None,
81             help_str = 'use CoreFoundation (darwin only) (auto)',
82             help_disable_str = 'do not use CoreFoundation framework')
83     add_option_enable_disable(ctx, 'atlas', default = False,
84             help_str = 'use Atlas library (no)',
85             help_disable_str = 'do not use Atlas library')
86     add_option_enable_disable(ctx, 'wavread', default = True,
87             help_str = 'compile with source_wavread (default)',
88             help_disable_str = 'do not compile source_wavread')
89     add_option_enable_disable(ctx, 'wavwrite', default = True,
90             help_str = 'compile with source_wavwrite (default)',
91             help_disable_str = 'do not compile source_wavwrite')
92
93     add_option_enable_disable(ctx, 'docs', default = None,
94             help_str = 'build documentation (auto)',
95             help_disable_str = 'do not build documentation')
96
97     ctx.add_option('--with-target-platform', type='string',
98             help='set target platform for cross-compilation', dest='target_platform')
99
100     ctx.load('compiler_c')
101     ctx.load('waf_unit_test')
102     ctx.load('gnu_dirs')
103
104 def configure(ctx):
105     target_platform = sys.platform
106     if ctx.options.target_platform:
107         target_platform = ctx.options.target_platform
108
109     from waflib import Options
110
111     if target_platform=='emscripten':
112         ctx.load('c_emscripten')
113     else:
114         ctx.load('compiler_c')
115
116     ctx.load('waf_unit_test')
117     ctx.load('gnu_dirs')
118
119     # check for common headers
120     ctx.check(header_name='stdlib.h')
121     ctx.check(header_name='stdio.h')
122     ctx.check(header_name='math.h')
123     ctx.check(header_name='string.h')
124     ctx.check(header_name='limits.h')
125     ctx.check(header_name='stdarg.h')
126     ctx.check(header_name='getopt.h', mandatory = False)
127     ctx.check(header_name='unistd.h', mandatory = False)
128
129     ctx.env['DEST_OS'] = target_platform
130
131     if ctx.options.build_type == "debug":
132         ctx.define('DEBUG', 1)
133     else:
134         ctx.define('NDEBUG', 1)
135
136     if ctx.env.CC_NAME != 'msvc':
137         if ctx.options.build_type == "debug":
138             # no optimization in debug mode
139             ctx.env.prepend_value('CFLAGS', ['-O0'])
140         else:
141             if target_platform == 'emscripten':
142                 # -Oz for small js file generation
143                 ctx.env.prepend_value('CFLAGS', ['-Oz'])
144             else:
145                 # default to -O2 in release mode
146                 ctx.env.prepend_value('CFLAGS', ['-O2'])
147         # enable debug symbols and configure warnings
148         ctx.env.prepend_value('CFLAGS', ['-g', '-Wall', '-Wextra'])
149     else:
150         # enable debug symbols
151         ctx.env.CFLAGS += ['/Z7']
152         # /FS flag available in msvc >= 12 (2013)
153         if 'MSVC_VERSION' in ctx.env and ctx.env.MSVC_VERSION >= 12:
154             ctx.env.CFLAGS += ['/FS']
155         ctx.env.LINKFLAGS += ['/DEBUG', '/INCREMENTAL:NO']
156         # configure warnings
157         ctx.env.CFLAGS += ['/W4', '/D_CRT_SECURE_NO_WARNINGS']
158         # set optimization level and runtime libs
159         if (ctx.options.build_type == "release"):
160             ctx.env.CFLAGS += ['/Ox']
161             ctx.env.CFLAGS += ['/MD']
162         else:
163             assert(ctx.options.build_type == "debug")
164             ctx.env.CFLAGS += ['/MDd']
165
166     ctx.check_cc(lib='m', uselib_store='M', mandatory=False)
167
168     if target_platform not in ['win32', 'win64']:
169         ctx.env.CFLAGS += ['-fPIC']
170     else:
171         ctx.define('HAVE_WIN_HACKS', 1)
172         ctx.env['cshlib_PATTERN'] = 'lib%s.dll'
173
174     if target_platform == 'darwin' and ctx.options.enable_fat:
175         ctx.env.CFLAGS += ['-arch', 'i386', '-arch', 'x86_64']
176         ctx.env.LINKFLAGS += ['-arch', 'i386', '-arch', 'x86_64']
177         MINSDKVER="10.4"
178         ctx.env.CFLAGS += [ '-mmacosx-version-min=' + MINSDKVER ]
179         ctx.env.LINKFLAGS += [ '-mmacosx-version-min=' + MINSDKVER ]
180
181     if target_platform in [ 'darwin', 'ios', 'iosimulator']:
182         if (ctx.options.enable_apple_audio != False):
183             ctx.env.FRAMEWORK += ['CoreFoundation', 'AudioToolbox']
184             ctx.define('HAVE_SOURCE_APPLE_AUDIO', 1)
185             ctx.define('HAVE_SINK_APPLE_AUDIO', 1)
186             ctx.msg('Checking for AudioToolbox.framework', 'yes')
187         else:
188             ctx.msg('Checking for AudioToolbox.framework', 'no (disabled)', color = 'YELLOW')
189         if (ctx.options.enable_accelerate != False):
190             ctx.define('HAVE_ACCELERATE', 1)
191             ctx.env.FRAMEWORK += ['Accelerate']
192             ctx.msg('Checking for Accelerate framework', 'yes')
193         else:
194             ctx.msg('Checking for Accelerate framework', 'no (disabled)', color = 'YELLOW')
195
196     if target_platform in [ 'ios', 'iosimulator' ]:
197         MINSDKVER="6.1"
198         ctx.env.CFLAGS += ['-std=c99']
199         if (ctx.options.enable_apple_audio != False):
200             ctx.define('HAVE_AUDIO_UNIT', 1)
201             #ctx.env.FRAMEWORK += ['CoreFoundation', 'AudioToolbox']
202         if target_platform == 'ios':
203             DEVROOT = "/Applications/Xcode.app/Contents"
204             DEVROOT += "/Developer/Platforms/iPhoneOS.platform/Developer"
205             SDKROOT = "%(DEVROOT)s/SDKs/iPhoneOS.sdk" % locals()
206             ctx.env.CFLAGS += [ '-fembed-bitcode' ]
207             ctx.env.CFLAGS += [ '-arch', 'arm64' ]
208             ctx.env.CFLAGS += [ '-arch', 'armv7' ]
209             ctx.env.CFLAGS += [ '-arch', 'armv7s' ]
210             ctx.env.LINKFLAGS += [ '-arch', 'arm64' ]
211             ctx.env.LINKFLAGS += ['-arch', 'armv7']
212             ctx.env.LINKFLAGS += ['-arch', 'armv7s']
213             ctx.env.CFLAGS += [ '-miphoneos-version-min=' + MINSDKVER ]
214             ctx.env.LINKFLAGS += [ '-miphoneos-version-min=' + MINSDKVER ]
215         else:
216             DEVROOT = "/Applications/Xcode.app/Contents"
217             DEVROOT += "/Developer/Platforms/iPhoneSimulator.platform/Developer"
218             SDKROOT = "%(DEVROOT)s/SDKs/iPhoneSimulator.sdk" % locals()
219             ctx.env.CFLAGS += [ '-arch', 'i386' ]
220             ctx.env.CFLAGS += [ '-arch', 'x86_64' ]
221             ctx.env.LINKFLAGS += ['-arch', 'i386']
222             ctx.env.LINKFLAGS += ['-arch', 'x86_64']
223             ctx.env.CFLAGS += [ '-mios-simulator-version-min=' + MINSDKVER ]
224             ctx.env.LINKFLAGS += [ '-mios-simulator-version-min=' + MINSDKVER ]
225         ctx.env.CFLAGS += [ '-isysroot' , SDKROOT]
226         ctx.env.LINKFLAGS += [ '-isysroot' , SDKROOT]
227
228     if target_platform == 'emscripten':
229         if ctx.options.build_type == "debug":
230             ctx.env.cshlib_PATTERN = '%s.js'
231             ctx.env.LINKFLAGS += ['-s','ASSERTIONS=2']
232             ctx.env.LINKFLAGS += ['-s','SAFE_HEAP=1']
233             ctx.env.LINKFLAGS += ['-s','ALIASING_FUNCTION_POINTERS=0']
234             ctx.env.LINKFLAGS += ['-O0']
235         else:
236             ctx.env.LINKFLAGS += ['-Oz']
237             ctx.env.cshlib_PATTERN = '%s.min.js'
238
239         # doesnt ship file system support in lib
240         ctx.env.LINKFLAGS_cshlib += ['-s', 'NO_FILESYSTEM=1']
241         # put memory file inside generated js files for easier portability
242         ctx.env.LINKFLAGS += ['--memory-init-file', '0']
243         ctx.env.cprogram_PATTERN = "%s.js"
244         ctx.env.cstlib_PATTERN = '%s.a'
245
246         # tell emscripten functions we want to expose
247         from python.lib.gen_external import get_c_declarations, get_cpp_objects_from_c_declarations, get_all_func_names_from_lib, generate_lib_from_c_declarations
248         c_decls = get_c_declarations(usedouble=False)  # emscripten can't use double
249         objects = get_cpp_objects_from_c_declarations(c_decls)
250         # ensure that aubio structs are exported
251         objects += ['fvec_t', 'cvec_t', 'fmat_t']
252         lib = generate_lib_from_c_declarations(objects, c_decls)
253         exported_funcnames = get_all_func_names_from_lib(lib)
254         c_mangled_names = ['_' + s for s in exported_funcnames]
255         ctx.env.LINKFLAGS_cshlib += ['-s', 'EXPORTED_FUNCTIONS=%s' % c_mangled_names]
256
257     if (ctx.options.enable_atlas != True):
258         ctx.options.enable_atlas = False
259
260     # check support for C99 __VA_ARGS__ macros
261     check_c99_varargs = '''
262 #include <stdio.h>
263 #define AUBIO_ERR(...) fprintf(stderr, __VA_ARGS__)
264 '''
265
266     if ctx.check_cc(fragment = check_c99_varargs,
267             type='cstlib',
268             msg = 'Checking for C99 __VA_ARGS__ macro',
269             mandatory = False):
270         ctx.define('HAVE_C99_VARARGS_MACROS', 1)
271
272     # show a message about enable_double status
273     if (ctx.options.enable_double == True):
274         ctx.msg('Checking for size of smpl_t', 'double')
275         ctx.msg('Checking for size of lsmp_t', 'long double')
276     else:
277         ctx.msg('Checking for size of smpl_t', 'float')
278         ctx.msg('Checking for size of lsmp_t', 'double')
279
280     # optionally use complex.h
281     if (ctx.options.enable_complex == True):
282         ctx.check(header_name='complex.h')
283     else:
284         ctx.msg('Checking if complex.h is enabled', 'no')
285
286     # check for fftw3
287     if (ctx.options.enable_fftw3 != False or ctx.options.enable_fftw3f != False):
288         # one of fftwf or fftw3f
289         if (ctx.options.enable_fftw3f != False):
290             ctx.check_cfg(package = 'fftw3f',
291                     args = '--cflags --libs fftw3f >= 3.0.0',
292                     mandatory = ctx.options.enable_fftw3f)
293             if (ctx.options.enable_double == True):
294                 ctx.msg('Warning',
295                         'fftw3f enabled, but compiling in double precision!')
296         else:
297             # fftw3f disabled, take most sensible one according to
298             # enable_double
299             if (ctx.options.enable_double == True):
300                 ctx.check_cfg(package = 'fftw3',
301                         args = '--cflags --libs fftw3 >= 3.0.0.',
302                         mandatory = ctx.options.enable_fftw3)
303             else:
304                 ctx.check_cfg(package = 'fftw3f',
305                         args = '--cflags --libs fftw3f >= 3.0.0',
306                         mandatory = ctx.options.enable_fftw3)
307         ctx.define('HAVE_FFTW3', 1)
308
309     # fftw not enabled, use vDSP or ooura
310     if 'HAVE_FFTW3F' in ctx.env.define_key:
311         ctx.msg('Checking for FFT implementation', 'fftw3f')
312     elif 'HAVE_FFTW3' in ctx.env.define_key:
313         ctx.msg('Checking for FFT implementation', 'fftw3')
314     elif 'HAVE_ACCELERATE' in ctx.env.define_key:
315         ctx.msg('Checking for FFT implementation', 'vDSP')
316     else:
317         ctx.msg('Checking for FFT implementation', 'ooura')
318
319     # check for libsndfile
320     if (ctx.options.enable_sndfile != False):
321         ctx.check_cfg(package = 'sndfile',
322                 args = '--cflags --libs sndfile >= 1.0.4',
323                 mandatory = ctx.options.enable_sndfile)
324
325     # check for libsamplerate
326     if (ctx.options.enable_double):
327         if (ctx.options.enable_samplerate):
328             ctx.fatal("Could not compile aubio in double precision mode with libsamplerate")
329         else:
330             ctx.options.enable_samplerate = False
331             ctx.msg('Checking if using samplerate', 'no (disabled in double precision mode)',
332                     color = 'YELLOW')
333     if (ctx.options.enable_samplerate != False):
334         ctx.check_cfg(package = 'samplerate',
335                 args = '--cflags --libs samplerate >= 0.0.15',
336                 mandatory = ctx.options.enable_samplerate)
337
338     # check for jack
339     if (ctx.options.enable_jack != False):
340         ctx.check_cfg(package = 'jack',
341                 args = '--cflags --libs',
342                 mandatory = ctx.options.enable_jack)
343
344     # check for libav
345     if (ctx.options.enable_avcodec != False):
346         ctx.check_cfg(package = 'libavcodec',
347                 args = '--cflags --libs libavcodec >= 54.35.0',
348                 uselib_store = 'AVCODEC',
349                 mandatory = ctx.options.enable_avcodec)
350         ctx.check_cfg(package = 'libavformat',
351                 args = '--cflags --libs libavformat >= 52.3.0',
352                 uselib_store = 'AVFORMAT',
353                 mandatory = ctx.options.enable_avcodec)
354         ctx.check_cfg(package = 'libavutil',
355                 args = '--cflags --libs libavutil >= 52.3.0',
356                 uselib_store = 'AVUTIL',
357                 mandatory = ctx.options.enable_avcodec)
358         ctx.check_cfg(package = 'libswresample',
359                 args = '--cflags --libs libswresample >= 1.2.0',
360                 uselib_store = 'SWRESAMPLE',
361                 mandatory = False)
362         if 'HAVE_SWRESAMPLE' not in ctx.env:
363             ctx.check_cfg(package = 'libavresample',
364                     args = '--cflags --libs libavresample >= 1.0.1',
365                     uselib_store = 'AVRESAMPLE',
366                     mandatory = False)
367
368         msg_check = 'Checking for all libav libraries'
369         if 'HAVE_AVCODEC' not in ctx.env:
370             ctx.msg(msg_check, 'not found (missing avcodec)', color = 'YELLOW')
371         elif 'HAVE_AVFORMAT' not in ctx.env:
372             ctx.msg(msg_check, 'not found (missing avformat)', color = 'YELLOW')
373         elif 'HAVE_AVUTIL' not in ctx.env:
374             ctx.msg(msg_check, 'not found (missing avutil)', color = 'YELLOW')
375         elif 'HAVE_SWRESAMPLE' not in ctx.env and 'HAVE_AVRESAMPLE' not in ctx.env:
376             resample_missing = 'not found (avresample or swresample required)'
377             ctx.msg(msg_check, resample_missing, color = 'YELLOW')
378         else:
379             ctx.msg(msg_check, 'yes')
380             if 'HAVE_SWRESAMPLE' in ctx.env:
381                 ctx.define('HAVE_SWRESAMPLE', 1)
382             elif 'HAVE_AVRESAMPLE' in ctx.env:
383                 ctx.define('HAVE_AVRESAMPLE', 1)
384             ctx.define('HAVE_LIBAV', 1)
385
386     if (ctx.options.enable_wavread != False):
387         ctx.define('HAVE_WAVREAD', 1)
388     ctx.msg('Checking if using source_wavread', ctx.options.enable_wavread and 'yes' or 'no')
389     if (ctx.options.enable_wavwrite!= False):
390         ctx.define('HAVE_WAVWRITE', 1)
391     ctx.msg('Checking if using sink_wavwrite', ctx.options.enable_wavwrite and 'yes' or 'no')
392
393     # use ATLAS
394     if (ctx.options.enable_atlas != False):
395         ctx.check(header_name = 'atlas/cblas.h', mandatory = ctx.options.enable_atlas)
396         #ctx.check(lib = 'lapack', uselib_store = 'LAPACK', mandatory = ctx.options.enable_atlas)
397         ctx.check(lib = 'cblas', uselib_store = 'BLAS', mandatory = ctx.options.enable_atlas)
398
399     # use memcpy hacks
400     if (ctx.options.enable_memcpy == True):
401         ctx.define('HAVE_MEMCPY_HACKS', 1)
402
403     # write configuration header
404     ctx.write_config_header('src/config.h')
405
406     # the following defines will be passed as arguments to the compiler
407     # instead of being written to src/config.h
408     ctx.define('HAVE_CONFIG_H', 1)
409
410     # add some defines used in examples
411     ctx.define('AUBIO_PREFIX', ctx.env['PREFIX'])
412     ctx.define('PACKAGE', APPNAME)
413
414     # double precision mode
415     if (ctx.options.enable_double == True):
416         ctx.define('HAVE_AUBIO_DOUBLE', 1)
417
418     if (ctx.options.enable_docs != False):
419         # check if txt2man is installed, optional
420         try:
421           ctx.find_program('txt2man', var='TXT2MAN')
422         except ctx.errors.ConfigurationError:
423           ctx.to_log('txt2man was not found (ignoring)')
424
425         # check if doxygen is installed, optional
426         try:
427           ctx.find_program('doxygen', var='DOXYGEN')
428         except ctx.errors.ConfigurationError:
429           ctx.to_log('doxygen was not found (ignoring)')
430
431         # check if sphinx-build is installed, optional
432         try:
433           ctx.find_program('sphinx-build', var='SPHINX')
434         except ctx.errors.ConfigurationError:
435           ctx.to_log('sphinx-build was not found (ignoring)')
436
437 def build(bld):
438     bld.env['VERSION'] = VERSION
439     bld.env['LIB_VERSION'] = LIB_VERSION
440
441     # main source
442     bld.recurse('src')
443
444     # add sub directories
445     if bld.env['DEST_OS'] not in ['ios', 'iosimulator', 'android']:
446         if bld.env['DEST_OS']=='emscripten' and not bld.options.testcmd:
447             bld.options.testcmd = 'node %s'
448         bld.recurse('examples')
449         bld.recurse('tests')
450
451     # pkg-config template
452     bld( source = 'aubio.pc.in' )
453
454     # documentation
455     txt2man(bld)
456     doxygen(bld)
457     sphinx(bld)
458
459 def txt2man(bld):
460     # build manpages from txt files using txt2man
461     if bld.env['TXT2MAN']:
462         from waflib import TaskGen
463         if 'MANDIR' not in bld.env:
464             bld.env['MANDIR'] = bld.env['DATAROOTDIR'] + '/man'
465         bld.env.VERSION = VERSION
466         rule_str = '${TXT2MAN} -t `basename ${TGT} | cut -f 1 -d . | tr a-z A-Z`'
467         rule_str += ' -r ${PACKAGE}\\ ${VERSION} -P ${PACKAGE}'
468         rule_str += ' -v ${PACKAGE}\\ User\\\'s\\ manual'
469         rule_str += ' -s 1 ${SRC} > ${TGT}'
470         TaskGen.declare_chain(
471                 name      = 'txt2man',
472                 rule      = rule_str,
473                 ext_in    = '.txt',
474                 ext_out   = '.1',
475                 reentrant = False,
476                 install_path =  '${MANDIR}/man1',
477                 )
478         bld( source = bld.path.ant_glob('doc/*.txt') )
479
480 def doxygen(bld):
481     # build documentation from source files using doxygen
482     if bld.env['DOXYGEN']:
483         bld.env.VERSION = VERSION
484         rule = '( cat ${SRC} && echo PROJECT_NUMBER=${VERSION}; )'
485         rule += ' | doxygen - > /dev/null'
486         bld( name = 'doxygen', rule = rule,
487                 source = 'doc/web.cfg',
488                 target = '../doc/web/html/index.html',
489                 cwd = 'doc')
490         bld.install_files( '${DATAROOTDIR}' + '/doc/libaubio-doc',
491                 bld.path.ant_glob('doc/web/html/**'),
492                 cwd = bld.path.find_dir ('doc/web'),
493                 relative_trick = True)
494
495 def sphinx(bld):
496     # build documentation from source files using sphinx-build
497     # note: build in ../doc/_build/html, otherwise waf wont install unsigned files
498     if bld.env['SPHINX']:
499         bld.env.VERSION = VERSION
500         bld( name = 'sphinx',
501                 rule = '${SPHINX} -b html -D release=${VERSION} -D version=${VERSION} -a -q `dirname ${SRC}` `dirname ${TGT}`',
502                 source = 'doc/conf.py',
503                 target = '../doc/_build/html/index.html')
504         bld.install_files( '${DATAROOTDIR}' + '/doc/libaubio-doc/sphinx',
505                 bld.path.ant_glob('doc/_build/html/**'),
506                 cwd = bld.path.find_dir('doc/_build/html'),
507                 relative_trick = True)
508
509 # register the previous rules as build rules
510 from waflib.Build import BuildContext
511
512 class build_txt2man(BuildContext):
513     cmd = 'txt2man'
514     fun = 'txt2man'
515
516 class build_manpages(BuildContext):
517     cmd = 'manpages'
518     fun = 'txt2man'
519
520 class build_sphinx(BuildContext):
521     cmd = 'sphinx'
522     fun = 'sphinx'
523
524 class build_doxygen(BuildContext):
525     cmd = 'doxygen'
526     fun = 'doxygen'
527
528 def shutdown(bld):
529     from waflib import Logs
530     if bld.options.target_platform in ['ios', 'iosimulator']:
531         msg ='building for %s, contact the author for a commercial license' % bld.options.target_platform
532         Logs.pprint('RED', msg)
533         msg ='   Paul Brossier <piem@aubio.org>'
534         Logs.pprint('RED', msg)
535
536 def dist(ctx):
537     ctx.excl  = ' **/.waf* **/*~ **/*.pyc **/*.swp **/*.swo **/*.swn **/.lock-w* **/.git*'
538     ctx.excl += ' **/build/*'
539     ctx.excl += ' doc/_build'
540     ctx.excl += ' python/demos_*'
541     ctx.excl += ' **/python/gen **/python/build **/python/dist'
542     ctx.excl += ' **/python/ext/config.h'
543     ctx.excl += ' **/python/lib/aubio/_aubio.so'
544     ctx.excl += ' **.egg-info'
545     ctx.excl += ' **/**.zip **/**.tar.bz2'
546     ctx.excl += ' **.tar.bz2'
547     ctx.excl += ' **/doc/full/* **/doc/web/*'
548     ctx.excl += ' **/doc/full.cfg'
549     ctx.excl += ' **/python/*.db'
550     ctx.excl += ' **/python.old/*'
551     ctx.excl += ' **/python/*/*.old'
552     ctx.excl += ' **/python/tests/sounds'
553     ctx.excl += ' **/**.asc'
554     ctx.excl += ' **/dist*'
555     ctx.excl += ' **/.DS_Store'
556     ctx.excl += ' **/.travis.yml'
557     ctx.excl += ' **/.landscape.yml'
558     ctx.excl += ' **/.appveyor.yml'