summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2021-05-18 08:41:09 -0400
committerSolomon Peachy <pizza@shaftnet.org>2021-05-18 08:43:47 -0400
commit0c4c1e60428c28b30a5f1c151b6691b2171cff7f (patch)
tree2811886f2ff7026bc3356903aedcc42392d661d3
parent64bed8361d6452fb4e1e161955d3550b81352d82 (diff)
downloadrockbox-0c4c1e60428c28b30a5f1c151b6691b2171cff7f.tar.gz
rockbox-0c4c1e60428c28b30a5f1c151b6691b2171cff7f.zip
rbspeex: Fix build when using system speex libraries
Change-Id: If6dd5d89ff1e7d668ca975a89b9091a86cbca42c
-rw-r--r--tools/rbspeex/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/rbspeex/Makefile b/tools/rbspeex/Makefile
index 03f88f34cd..669e030c0d 100644
--- a/tools/rbspeex/Makefile
+++ b/tools/rbspeex/Makefile
@@ -73,12 +73,14 @@ endif
73ifeq ($(SYS_SPEEX),) 73ifeq ($(SYS_SPEEX),)
74# This sets up 'SRC' based on the files mentioned in SOURCES 74# This sets up 'SRC' based on the files mentioned in SOURCES
75SPEEXSRCS := $(shell $(CC) $(CFLAGS) -E -P -xc $(SPEEXSRC)/SOURCES) 75SPEEXSRCS := $(shell $(CC) $(CFLAGS) -E -P -xc $(SPEEXSRC)/SOURCES)
76LIBSOURCES := $(SPEEXSRCS:%.c=$(SPEEXSRC)/%.c) rbspeex.c 76LIBSOURCES := $(SPEEXSRCS:%.c=$(SPEEXSRC)/%.c)
77LIBS = $(TARGET_DIR)librbspeex.a 77LIBS = $(TARGET_DIR)librbspeex.a
78else 78else
79LIBS = $(SYS_SPEEX) 79LIBS = $(SYS_SPEEX)
80endif 80endif
81 81
82LIBSOURCES += rbspeex.c
83
82TARGET_DIR ?= $(shell pwd)/ 84TARGET_DIR ?= $(shell pwd)/
83BUILD_DIR ?= $(TARGET_DIR)build$(COMPILETARGET) 85BUILD_DIR ?= $(TARGET_DIR)build$(COMPILETARGET)
84OBJDIR = $(abspath $(BUILD_DIR))/ 86OBJDIR = $(abspath $(BUILD_DIR))/