Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Marc Valin <jean-marc.valin@usherbrooke.ca>2011-08-02 16:13:42 +0400
committerJean-Marc Valin <jean-marc.valin@usherbrooke.ca>2011-08-02 16:13:42 +0400
commitb2c00d2751f32aa9869250b65f6a7e4aa40a0116 (patch)
tree1e152d8abd832e546af1c2285066d87555c04b74 /silk_sources.mk
parent06d57b2165a3de0b8d1dd537382a80114b89081b (diff)
Makefile fixes
silk_sources.mk no longer needs to be patched (s/if/ifdef/) for the draft Makefile to work.
Diffstat (limited to 'silk_sources.mk')
-rw-r--r--silk_sources.mk8
1 files changed, 3 insertions, 5 deletions
diff --git a/silk_sources.mk b/silk_sources.mk
index a263c7c5..2e3151f3 100644
--- a/silk_sources.mk
+++ b/silk_sources.mk
@@ -94,8 +94,7 @@ silk/silk_stereo_find_predictor.c \
silk/silk_stereo_quant_pred.c
-if FIXED_POINT
-SILK_SOURCES += \
+SILK_SOURCES_FIXED = \
silk/fixed/silk_LTP_analysis_filter_FIX.c \
silk/fixed/silk_LTP_scale_ctrl_FIX.c \
silk/fixed/silk_corrMatrix_FIX.c \
@@ -112,8 +111,8 @@ silk/fixed/silk_residual_energy16_FIX.c \
silk/fixed/silk_residual_energy_FIX.c \
silk/fixed/silk_solve_LS_FIX.c \
silk/fixed/silk_warped_autocorrelation_FIX.c
-else
-SILK_SOURCES += \
+
+SILK_SOURCES_FLOAT = \
silk/float/silk_apply_sine_window_FLP.c \
silk/float/silk_corrMatrix_FLP.c \
silk/float/silk_encode_frame_FLP.c \
@@ -145,4 +144,3 @@ silk/float/silk_scale_copy_vector_FLP.c \
silk/float/silk_scale_vector_FLP.c \
silk/float/silk_schur_FLP.c \
silk/float/silk_sort_FLP.c
-endif