40 lines
721 B
Makefile
Executable File
40 lines
721 B
Makefile
Executable File
include $(MAKEDIR)/Makefile.base
|
|
|
|
|
|
PROJECTS := celt silk opus
|
|
INCPATH := -I include -I celt -I silk
|
|
|
|
ifdef FIXED_POINT
|
|
PROJECTS += silk/fixed
|
|
INCPATH += -I silk/fixed
|
|
else
|
|
PROJECTS += silk/float
|
|
INCPATH += -I silk/float
|
|
endif
|
|
|
|
SRC_C := $(SRC_C) \
|
|
src/opus.c \
|
|
src/opus_decoder.c \
|
|
src/opus_encoder.c \
|
|
src/opus_multistream.c \
|
|
src/opus_multistream_encoder.c \
|
|
src/opus_multistream_decoder.c \
|
|
src/repacketizer.c \
|
|
src/opus_projection_encoder.c \
|
|
src/opus_projection_decoder.c \
|
|
src/mapping_matrix.c
|
|
|
|
SRC_C := $(SRC_C) \
|
|
src/analysis.c \
|
|
src/mlp.c \
|
|
src/mlp_data.c
|
|
|
|
LIBFILE := libopus.a
|
|
COPYTO := ../../sdk/lib
|
|
|
|
_FLAGS := $(_FLAGS) -DOPUS_BUILD -DUSE_ALLOCA
|
|
|
|
include $(MAKEDIR)/Makefile.lib
|
|
|
|
|