mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-24 18:41:57 +00:00
20 lines
517 B
Makefile
20 lines
517 B
Makefile
|
|
||
|
VERSION=soundtouch-1.3.1
|
||
|
DIRECTORY=$(switch_srcdir)/libs/$(VERSION)
|
||
|
LA=$(DIRECTORY)/source/SoundTouch/.libs/libSoundTouch.a
|
||
|
|
||
|
BASE=../../../..
|
||
|
LOCAL_CFLAGS += -I$(DIRECTORY)/include -DINTEGER_SAMPLES
|
||
|
LOCAL_LIBADD=$(LA)
|
||
|
DEFAULT_ARGS=--prefix=$(PREFIX) --disable-shared --with-pic
|
||
|
|
||
|
include /usr/src/freeswitch.trunk/build/modmake.rules
|
||
|
|
||
|
$(DIRECTORY):
|
||
|
$(GETLIB) $(VERSION).tar.gz
|
||
|
cd $(DIRECTORY) && ./configure $(DEFAULT_ARGS) --enable-integer-samples
|
||
|
|
||
|
$(LA): $(DIRECTORY)
|
||
|
cd $(DIRECTORY) && $(MAKE)
|
||
|
$(TOUCH_TARGET)
|