mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-24 18:41:57 +00:00
15 lines
449 B
Makefile
15 lines
449 B
Makefile
include $(top_srcdir)/build/modmake.rulesam
|
|
MODNAME=mod_conference
|
|
|
|
mod_LTLIBRARIES = mod_conference.la
|
|
mod_conference_la_SOURCES = mod_conference.c
|
|
mod_conference_la_CFLAGS = $(AM_CFLAGS) -I.
|
|
mod_conference_la_LIBADD = $(switch_builddir)/libfreeswitch.la
|
|
mod_conference_la_LDFLAGS = -avoid-version -module -no-undefined -shared
|
|
|
|
if HAVE_OPENAL
|
|
mod_conference_la_LDFLAGS += -lopenal -lm
|
|
mod_conference_la_CFLAGS += -DOPENAL_POSITIONING
|
|
endif
|
|
|