source: wscript @ 40792b2

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5
Last change on this file since 40792b2 was 40792b2, checked in by Martin Hermant <martin.hermant@gmail.com>, 7 years ago

wscript : use gen_external code to generate flags passed to emscripten

  • Property mode set to 100644
File size: 22.5 KB
Line 
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
13import sys
14
15APPNAME = 'aubio'
16
17from this_version import *
18
19VERSION = get_aubio_version()
20LIB_VERSION = get_libaubio_version()
21
22top = '.'
23out = 'build'
24
25def 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
40def 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
104def configure(ctx):
105    from waflib import Options
106    ctx.load('compiler_c')
107    ctx.load('waf_unit_test')
108    ctx.load('gnu_dirs')
109
110    target_platform = sys.platform
111    if ctx.options.target_platform:
112        target_platform = ctx.options.target_platform
113
114
115    if target_platform=='emscripten':
116        # need to force spaces between flag -o and path
117        # inspired from :
118        # https://github.com/waf-project/waf/blob/master/waflib/extras/c_emscripten.py (#1885)
119        # (OSX /emscripten 1.37.9)
120        ctx.env.CC_TGT_F            = ['-c', '-o', '']
121        ctx.env.CCLNK_TGT_F         = ['-o', '']
122    # check for common headers
123    ctx.check(header_name='stdlib.h')
124    ctx.check(header_name='stdio.h')
125    ctx.check(header_name='math.h')
126    ctx.check(header_name='string.h')
127    ctx.check(header_name='limits.h')
128    ctx.check(header_name='stdarg.h')
129    ctx.check(header_name='getopt.h', mandatory = False)
130    ctx.check(header_name='unistd.h', mandatory = False)
131
132    ctx.env['DEST_OS'] = target_platform
133
134    if ctx.options.build_type == "debug":
135        ctx.define('DEBUG', 1)
136    else:
137        ctx.define('NDEBUG', 1)
138
139    if ctx.env.CC_NAME != 'msvc':
140        if ctx.options.build_type == "debug":
141            # no optimization in debug mode
142            ctx.env.prepend_value('CFLAGS', ['-O0'])
143        else:
144            if target_platform == 'emscripten':
145                # -Oz for small js file generation
146                ctx.env.prepend_value('CFLAGS', ['-Oz'])
147            else:
148                # default to -O2 in release mode
149                ctx.env.prepend_value('CFLAGS', ['-O2'])
150        # enable debug symbols and configure warnings
151        ctx.env.prepend_value('CFLAGS', ['-g', '-Wall', '-Wextra'])
152    else:
153        # enable debug symbols
154        ctx.env.CFLAGS += ['/Z7', '/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        import os.path
230        ctx.env.CFLAGS += [ '-I' + os.path.join(os.environ['EMSCRIPTEN'], 'system', 'include') ]
231       
232        if ctx.options.build_type == "debug":
233            ctx.env.cshlib_PATTERN = '%s.js'
234            ctx.env.LINKFLAGS_cshlib += ['-s','ASSERTIONS=2']
235            ctx.env.LINKFLAGS_cshlib += ['-s','SAFE_HEAP=1']
236            ctx.env.LINKFLAGS_cshlib += ['-s','ALIASING_FUNCTION_POINTERS=0']
237        else:
238            ctx.env.LINKFLAGS += ['-Oz']
239            ctx.env.cshlib_PATTERN = '%s.min.js'
240       
241         # import exposed function names
242        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
243        c_decls = get_c_declarations(usedouble=False) #emscripten can't use double
244        objects = get_cpp_objects_from_c_declarations(c_decls)
245        objects+=['fvec']
246        lib =  generate_lib_from_c_declarations(objects,c_decls)
247        exported_funcnames = get_all_func_names_from_lib(lib)
248        c_mangled_names = ['_'+s for s in exported_funcnames]
249        ctx.env.LINKFLAGS_cshlib += ['-s','EXPORTED_FUNCTIONS=%s'%c_mangled_names]
250        ctx.env.cprogram_PATTERN = "%s.js"
251        if (ctx.options.enable_atlas != True):
252            ctx.options.enable_atlas = False
253
254    # check support for C99 __VA_ARGS__ macros
255    check_c99_varargs = '''
256#include <stdio.h>
257#define AUBIO_ERR(...) fprintf(stderr, __VA_ARGS__)
258'''
259
260    if ctx.check_cc(fragment = check_c99_varargs,
261            type='cstlib',
262            msg = 'Checking for C99 __VA_ARGS__ macro',
263            mandatory = False):
264        ctx.define('HAVE_C99_VARARGS_MACROS', 1)
265
266    # show a message about enable_double status
267    if (ctx.options.enable_double == True):
268        ctx.msg('Checking for size of smpl_t', 'double')
269        ctx.msg('Checking for size of lsmp_t', 'long double')
270    else:
271        ctx.msg('Checking for size of smpl_t', 'float')
272        ctx.msg('Checking for size of lsmp_t', 'double')
273
274    # optionally use complex.h
275    if (ctx.options.enable_complex == True):
276        ctx.check(header_name='complex.h')
277    else:
278        ctx.msg('Checking if complex.h is enabled', 'no')
279
280    # check for fftw3
281    if (ctx.options.enable_fftw3 != False or ctx.options.enable_fftw3f != False):
282        # one of fftwf or fftw3f
283        if (ctx.options.enable_fftw3f != False):
284            ctx.check_cfg(package = 'fftw3f',
285                    args = '--cflags --libs fftw3f >= 3.0.0',
286                    mandatory = ctx.options.enable_fftw3f)
287            if (ctx.options.enable_double == True):
288                ctx.msg('Warning',
289                        'fftw3f enabled, but compiling in double precision!')
290        else:
291            # fftw3f disabled, take most sensible one according to
292            # enable_double
293            if (ctx.options.enable_double == True):
294                ctx.check_cfg(package = 'fftw3',
295                        args = '--cflags --libs fftw3 >= 3.0.0.',
296                        mandatory = ctx.options.enable_fftw3)
297            else:
298                ctx.check_cfg(package = 'fftw3f',
299                        args = '--cflags --libs fftw3f >= 3.0.0',
300                        mandatory = ctx.options.enable_fftw3)
301        ctx.define('HAVE_FFTW3', 1)
302
303    # fftw not enabled, use vDSP or ooura
304    if 'HAVE_FFTW3F' in ctx.env.define_key:
305        ctx.msg('Checking for FFT implementation', 'fftw3f')
306    elif 'HAVE_FFTW3' in ctx.env.define_key:
307        ctx.msg('Checking for FFT implementation', 'fftw3')
308    elif 'HAVE_ACCELERATE' in ctx.env.define_key:
309        ctx.msg('Checking for FFT implementation', 'vDSP')
310    else:
311        ctx.msg('Checking for FFT implementation', 'ooura')
312
313    # check for libsndfile
314    if (ctx.options.enable_sndfile != False):
315        ctx.check_cfg(package = 'sndfile',
316                args = '--cflags --libs sndfile >= 1.0.4',
317                mandatory = ctx.options.enable_sndfile)
318
319    # check for libsamplerate
320    if (ctx.options.enable_double):
321        if (ctx.options.enable_samplerate):
322            ctx.fatal("Could not compile aubio in double precision mode with libsamplerate")
323        else:
324            ctx.options.enable_samplerate = False
325            ctx.msg('Checking if using samplerate', 'no (disabled in double precision mode)',
326                    color = 'YELLOW')
327    if (ctx.options.enable_samplerate != False):
328        ctx.check_cfg(package = 'samplerate',
329                args = '--cflags --libs samplerate >= 0.0.15',
330                mandatory = ctx.options.enable_samplerate)
331
332    # check for jack
333    if (ctx.options.enable_jack != False):
334        ctx.check_cfg(package = 'jack',
335                args = '--cflags --libs',
336                mandatory = ctx.options.enable_jack)
337
338    # check for libav
339    if (ctx.options.enable_avcodec != False):
340        ctx.check_cfg(package = 'libavcodec',
341                args = '--cflags --libs libavcodec >= 54.35.0',
342                uselib_store = 'AVCODEC',
343                mandatory = ctx.options.enable_avcodec)
344        ctx.check_cfg(package = 'libavformat',
345                args = '--cflags --libs libavformat >= 52.3.0',
346                uselib_store = 'AVFORMAT',
347                mandatory = ctx.options.enable_avcodec)
348        ctx.check_cfg(package = 'libavutil',
349                args = '--cflags --libs libavutil >= 52.3.0',
350                uselib_store = 'AVUTIL',
351                mandatory = ctx.options.enable_avcodec)
352        ctx.check_cfg(package = 'libswresample',
353                args = '--cflags --libs libswresample >= 1.2.0',
354                uselib_store = 'SWRESAMPLE',
355                mandatory = False)
356        if 'HAVE_SWRESAMPLE' not in ctx.env:
357            ctx.check_cfg(package = 'libavresample',
358                    args = '--cflags --libs libavresample >= 1.0.1',
359                    uselib_store = 'AVRESAMPLE',
360                    mandatory = False)
361
362        msg_check = 'Checking for all libav libraries'
363        if 'HAVE_AVCODEC' not in ctx.env:
364            ctx.msg(msg_check, 'not found (missing avcodec)', color = 'YELLOW')
365        elif 'HAVE_AVFORMAT' not in ctx.env:
366            ctx.msg(msg_check, 'not found (missing avformat)', color = 'YELLOW')
367        elif 'HAVE_AVUTIL' not in ctx.env:
368            ctx.msg(msg_check, 'not found (missing avutil)', color = 'YELLOW')
369        elif 'HAVE_SWRESAMPLE' not in ctx.env and 'HAVE_AVRESAMPLE' not in ctx.env:
370            resample_missing = 'not found (avresample or swresample required)'
371            ctx.msg(msg_check, resample_missing, color = 'YELLOW')
372        else:
373            ctx.msg(msg_check, 'yes')
374            if 'HAVE_SWRESAMPLE' in ctx.env:
375                ctx.define('HAVE_SWRESAMPLE', 1)
376            elif 'HAVE_AVRESAMPLE' in ctx.env:
377                ctx.define('HAVE_AVRESAMPLE', 1)
378            ctx.define('HAVE_LIBAV', 1)
379
380    if (ctx.options.enable_wavread != False):
381        ctx.define('HAVE_WAVREAD', 1)
382    ctx.msg('Checking if using source_wavread', ctx.options.enable_wavread and 'yes' or 'no')
383    if (ctx.options.enable_wavwrite!= False):
384        ctx.define('HAVE_WAVWRITE', 1)
385    ctx.msg('Checking if using sink_wavwrite', ctx.options.enable_wavwrite and 'yes' or 'no')
386
387    # use ATLAS
388    if (ctx.options.enable_atlas != False):
389        ctx.check(header_name = 'atlas/cblas.h', mandatory = ctx.options.enable_atlas)
390        #ctx.check(lib = 'lapack', uselib_store = 'LAPACK', mandatory = ctx.options.enable_atlas)
391        ctx.check(lib = 'cblas', uselib_store = 'BLAS', mandatory = ctx.options.enable_atlas)
392
393    # use memcpy hacks
394    if (ctx.options.enable_memcpy == True):
395        ctx.define('HAVE_MEMCPY_HACKS', 1)
396
397    # write configuration header
398    ctx.write_config_header('src/config.h')
399
400    # the following defines will be passed as arguments to the compiler
401    # instead of being written to src/config.h
402    ctx.define('HAVE_CONFIG_H', 1)
403
404    # add some defines used in examples
405    ctx.define('AUBIO_PREFIX', ctx.env['PREFIX'])
406    ctx.define('PACKAGE', APPNAME)
407
408    # double precision mode
409    if (ctx.options.enable_double == True):
410        ctx.define('HAVE_AUBIO_DOUBLE', 1)
411
412    if (ctx.options.enable_docs != False):
413        # check if txt2man is installed, optional
414        try:
415          ctx.find_program('txt2man', var='TXT2MAN')
416        except ctx.errors.ConfigurationError:
417          ctx.to_log('txt2man was not found (ignoring)')
418
419        # check if doxygen is installed, optional
420        try:
421          ctx.find_program('doxygen', var='DOXYGEN')
422        except ctx.errors.ConfigurationError:
423          ctx.to_log('doxygen was not found (ignoring)')
424
425        # check if sphinx-build is installed, optional
426        try:
427          ctx.find_program('sphinx-build', var='SPHINX')
428        except ctx.errors.ConfigurationError:
429          ctx.to_log('sphinx-build was not found (ignoring)')
430
431def build(bld):
432    bld.env['VERSION'] = VERSION
433    bld.env['LIB_VERSION'] = LIB_VERSION
434
435    # main source
436    bld.recurse('src')
437
438    # add sub directories
439    if bld.env['DEST_OS'] not in ['ios', 'iosimulator', 'android']:
440        bld.recurse('examples')
441        bld.recurse('tests')
442
443    # pkg-config template
444    bld( source = 'aubio.pc.in' )
445
446    # documentation
447    txt2man(bld)
448    doxygen(bld)
449    sphinx(bld)
450
451def txt2man(bld):
452    # build manpages from txt files using txt2man
453    if bld.env['TXT2MAN']:
454        from waflib import TaskGen
455        if 'MANDIR' not in bld.env:
456            bld.env['MANDIR'] = bld.env['DATAROOTDIR'] + '/man'
457        bld.env.VERSION = VERSION
458        rule_str = '${TXT2MAN} -t `basename ${TGT} | cut -f 1 -d . | tr a-z A-Z`'
459        rule_str += ' -r ${PACKAGE}\\ ${VERSION} -P ${PACKAGE}'
460        rule_str += ' -v ${PACKAGE}\\ User\\\'s\\ manual'
461        rule_str += ' -s 1 ${SRC} > ${TGT}'
462        TaskGen.declare_chain(
463                name      = 'txt2man',
464                rule      = rule_str,
465                ext_in    = '.txt',
466                ext_out   = '.1',
467                reentrant = False,
468                install_path =  '${MANDIR}/man1',
469                )
470        bld( source = bld.path.ant_glob('doc/*.txt') )
471
472def doxygen(bld):
473    # build documentation from source files using doxygen
474    if bld.env['DOXYGEN']:
475        bld.env.VERSION = VERSION
476        rule = '( cat ${SRC} && echo PROJECT_NUMBER=${VERSION}; )'
477        rule += ' | doxygen - > /dev/null'
478        bld( name = 'doxygen', rule = rule,
479                source = 'doc/web.cfg',
480                target = '../doc/web/html/index.html',
481                cwd = 'doc')
482        bld.install_files( '${DATAROOTDIR}' + '/doc/libaubio-doc',
483                bld.path.ant_glob('doc/web/html/**'),
484                cwd = bld.path.find_dir ('doc/web'),
485                relative_trick = True)
486
487def sphinx(bld):
488    # build documentation from source files using sphinx-build
489    # note: build in ../doc/_build/html, otherwise waf wont install unsigned files
490    if bld.env['SPHINX']:
491        bld.env.VERSION = VERSION
492        bld( name = 'sphinx',
493                rule = '${SPHINX} -b html -D release=${VERSION} -D version=${VERSION} -a -q `dirname ${SRC}` `dirname ${TGT}`',
494                source = 'doc/conf.py',
495                target = '../doc/_build/html/index.html')
496        bld.install_files( '${DATAROOTDIR}' + '/doc/libaubio-doc/sphinx',
497                bld.path.ant_glob('doc/_build/html/**'),
498                cwd = bld.path.find_dir('doc/_build/html'),
499                relative_trick = True)
500
501# register the previous rules as build rules
502from waflib.Build import BuildContext
503
504class build_txt2man(BuildContext):
505    cmd = 'txt2man'
506    fun = 'txt2man'
507
508class build_manpages(BuildContext):
509    cmd = 'manpages'
510    fun = 'txt2man'
511
512class build_sphinx(BuildContext):
513    cmd = 'sphinx'
514    fun = 'sphinx'
515
516class build_doxygen(BuildContext):
517    cmd = 'doxygen'
518    fun = 'doxygen'
519
520def shutdown(bld):
521    from waflib import Logs
522    if bld.options.target_platform in ['ios', 'iosimulator']:
523        msg ='building for %s, contact the author for a commercial license' % bld.options.target_platform
524        Logs.pprint('RED', msg)
525        msg ='   Paul Brossier <piem@aubio.org>'
526        Logs.pprint('RED', msg)
527
528def dist(ctx):
529    ctx.excl  = ' **/.waf* **/*~ **/*.pyc **/*.swp **/*.swo **/*.swn **/.lock-w* **/.git*'
530    ctx.excl += ' **/build/*'
531    ctx.excl += ' doc/_build'
532    ctx.excl += ' python/demos_*'
533    ctx.excl += ' **/python/gen **/python/build **/python/dist'
534    ctx.excl += ' **/python/ext/config.h'
535    ctx.excl += ' **/python/lib/aubio/_aubio.so'
536    ctx.excl += ' **.egg-info'
537    ctx.excl += ' **/**.zip **/**.tar.bz2'
538    ctx.excl += ' **.tar.bz2'
539    ctx.excl += ' **/doc/full/* **/doc/web/*'
540    ctx.excl += ' **/doc/full.cfg'
541    ctx.excl += ' **/python/*.db'
542    ctx.excl += ' **/python.old/*'
543    ctx.excl += ' **/python/*/*.old'
544    ctx.excl += ' **/python/tests/sounds'
545    ctx.excl += ' **/**.asc'
546    ctx.excl += ' **/dist*'
547    ctx.excl += ' **/.DS_Store'
548    ctx.excl += ' **/.travis.yml'
549    ctx.excl += ' **/.landscape.yml'
550    ctx.excl += ' **/.appveyor.yml'
Note: See TracBrowser for help on using the repository browser.