mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-24 10:31:13 +00:00
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@12783 d0543943-73ff-0310-b7d9-9358b9ac24b2
21 lines
588 B
Makefile
21 lines
588 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 $(BASE)/build/modmake.rules
|
|
|
|
$(DIRECTORY)/Makefile $(DIRECTORY)/config.status:
|
|
$(GETLIB) $(VERSION).tar.gz
|
|
cd $(DIRECTORY) && ./configure $(DEFAULT_ARGS) --enable-integer-samples
|
|
$(TOUCH_TARGET)
|
|
|
|
$(LA): $(DIRECTORY)/Makefile $(DIRECTORY)/config.status
|
|
cd $(DIRECTORY) && $(MAKE)
|
|
$(TOUCH_TARGET)
|
|
|