2012-04-30 16:20:22 -07:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
# You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
2012-08-04 11:26:44 -07:00
|
|
|
DEPTH = @DEPTH@
|
2012-04-30 16:20:22 -07:00
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
2013-05-16 06:33:26 -07:00
|
|
|
MSVC_ENABLE_PGO := 1
|
2012-04-30 16:20:22 -07:00
|
|
|
FORCE_STATIC_LIB= 1
|
|
|
|
|
|
|
|
DEFINES += \
|
|
|
|
-DOPUS_BUILD \
|
|
|
|
-DOPUS_VERSION='"draft-11-mozilla"' \
|
|
|
|
-DUSE_ALLOCA \
|
|
|
|
-Drestrict= \
|
|
|
|
$(NULL)
|
|
|
|
|
2012-09-13 15:47:12 -07:00
|
|
|
ifneq ($(filter $(OS_ARCH),Linux Darwin DragonFly FreeBSD NetBSD OpenBSD),)
|
2012-04-30 16:20:22 -07:00
|
|
|
DEFINES += -DHAVE_LRINTF
|
|
|
|
endif
|
|
|
|
ifeq ($(OS_ARCH), WINNT)
|
|
|
|
DEFINES += -Dinline=__inline
|
2012-05-15 03:18:14 -07:00
|
|
|
ifdef GNU_CC
|
|
|
|
DEFINES += -DHAVE_LRINTF
|
|
|
|
endif
|
2012-04-30 16:20:22 -07:00
|
|
|
endif
|
|
|
|
ifeq ($(OS_ARCH),AIX)
|
|
|
|
DEFINES += -Dalloca=__alloca
|
|
|
|
endif
|
2012-05-27 18:33:35 -07:00
|
|
|
ifeq ($(OS_ARCH),SunOS)
|
|
|
|
DEFINES += -DHAVE_ALLOCA_H
|
|
|
|
endif
|
2012-04-30 16:20:22 -07:00
|
|
|
|
|
|
|
LOCAL_INCLUDES += \
|
|
|
|
-I$(srcdir)/include \
|
|
|
|
-I$(srcdir)/celt \
|
|
|
|
-I$(srcdir)/silk \
|
|
|
|
-I$(srcdir)/src \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
VPATH += \
|
|
|
|
$(srcdir)/celt \
|
|
|
|
$(srcdir)/silk \
|
|
|
|
$(srcdir)/src \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
include $(srcdir)/celt_sources.mk
|
|
|
|
include $(srcdir)/silk_sources.mk
|
|
|
|
include $(srcdir)/opus_sources.mk
|
|
|
|
|
|
|
|
CSRCS = \
|
|
|
|
$(notdir $(CELT_SOURCES)) \
|
|
|
|
$(notdir $(SILK_SOURCES)) \
|
|
|
|
$(notdir $(OPUS_SOURCES)) \
|
|
|
|
$(NULL)
|
|
|
|
|
2012-11-13 17:32:28 -08:00
|
|
|
ifndef MOZ_SAMPLE_TYPE_FLOAT32
|
|
|
|
MOZ_OPUS_FIXED = 1
|
|
|
|
endif
|
|
|
|
|
2012-04-30 16:20:22 -07:00
|
|
|
ifdef MOZ_OPUS_FIXED
|
|
|
|
DEFINES += -DFIXED_POINT=1 -DDISABLE_FLOAT_API
|
|
|
|
LOCAL_INCLUDES += -I$(srcdir)/silk/fixed
|
|
|
|
VPATH += $(srcdir)/silk/fixed
|
|
|
|
CSRCS += $(notdir $(SILK_SOURCES_FIXED))
|
|
|
|
else
|
|
|
|
LOCAL_INCLUDES += -I$(srcdir)/silk/float
|
|
|
|
VPATH += $(srcdir)/silk/float
|
|
|
|
CSRCS += $(notdir $(SILK_SOURCES_FLOAT))
|
|
|
|
endif
|
|
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|