michael@0: # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- michael@0: # vim: set filetype=python: michael@0: # This Source Code Form is subject to the terms of the Mozilla Public michael@0: # License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: # file, You can obtain one at http://mozilla.org/MPL/2.0/. michael@0: michael@0: SOURCES += [ michael@0: 'tremor_block.c', michael@0: 'tremor_codebook.c', michael@0: 'tremor_floor0.c', michael@0: 'tremor_floor1.c', michael@0: 'tremor_info.c', michael@0: 'tremor_mapping0.c', michael@0: 'tremor_mdct.c', michael@0: 'tremor_registry.c', michael@0: 'tremor_res012.c', michael@0: 'tremor_sharedbook.c', michael@0: 'tremor_synthesis.c', michael@0: 'tremor_window.c', michael@0: ] michael@0: michael@0: FINAL_LIBRARY = 'gkmedias' michael@0: michael@0: if CONFIG['OS_ARCH'] == 'AIX': michael@0: DEFINES['alloca'] = '__alloca' michael@0: michael@0: if CONFIG['TARGET_CPU'] == 'arm' and CONFIG['GNU_CC'] and not CONFIG['MOZ_THUMB2']: michael@0: DEFINES['_ARM_ASSEM_'] = True michael@0: michael@0: LOCAL_INCLUDES += [ michael@0: '/media/libtremor/include/tremor', michael@0: ] michael@0: