mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-24 10:31:13 +00:00
31 lines
1.0 KiB
Makefile
31 lines
1.0 KiB
Makefile
include $(top_srcdir)/build/modmake.rulesam
|
|
MODNAME=mod_opus
|
|
OPUS=opus-1.1-p2
|
|
OPUS_DIR=$(switch_srcdir)/libs/$(OPUS)
|
|
OPUS_BUILDDIR=$(switch_builddir)/libs/$(OPUS)
|
|
OPUS_LA=$(OPUS_BUILDDIR)/.libs/libopus.la
|
|
|
|
mod_LTLIBRARIES = mod_opus.la
|
|
mod_opus_la_SOURCES = mod_opus.c
|
|
mod_opus_la_CFLAGS = $(AM_CFLAGS) -I$(OPUS_DIR)/include
|
|
mod_opus_la_LIBADD = $(switch_builddir)/libfreeswitch.la $(OPUS_LA)
|
|
mod_opus_la_LDFLAGS = -avoid-version -module -no-undefined -shared -lm -lz
|
|
|
|
MY_DEFAULT_ARGS = --build=$(build) --host=$(host) --target=$(target) --prefix="$(prefix)" --exec_prefix="$(exec_prefix)" --libdir="$(libdir)" --disable-shared --with-pic --srcdir=$(OPUS_DIR)
|
|
|
|
BUILT_SOURCES=$(OPUS_LA)
|
|
$(OPUS_DIR)/configure:
|
|
$(GETLIB) $(OPUS).tar.gz
|
|
|
|
$(OPUS_BUILDDIR)/Makefile: $(OPUS_DIR)/configure
|
|
mkdir -p $(OPUS_BUILDDIR)
|
|
cd $(OPUS_BUILDDIR) && $(DEFAULT_VARS) $(OPUS_DIR)/configure $(MY_DEFAULT_ARGS)
|
|
$(TOUCH_TARGET)
|
|
|
|
$(OPUS_LA): $(OPUS_BUILDDIR)/Makefile
|
|
cd $(OPUS_BUILDDIR) && $(MAKE)
|
|
$(TOUCH_TARGET)
|
|
|
|
$(MODNAME).lo: $(OPUS_LA)
|
|
|