mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-24 10:31:13 +00:00
18 lines
713 B
Makefile
18 lines
713 B
Makefile
include $(top_srcdir)/build/modmake.rulesam
|
|
MODNAME=mod_conference
|
|
|
|
mod_LTLIBRARIES = mod_conference.la
|
|
mod_conference_la_SOURCES = mod_conference.c conference_api.c conference_loop.c conference_al.c conference_cdr.c conference_video.c
|
|
mod_conference_la_SOURCES += conference_event.c conference_member.c conference_utils.c conference_file.c conference_record.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
|
|
|
|
$(am_mod_conference_la_OBJECTS): mod_conference.h
|
|
|
|
if HAVE_OPENAL
|
|
mod_conference_la_LDFLAGS += -lopenal -lm
|
|
mod_conference_la_CFLAGS += -DOPENAL_POSITIONING
|
|
endif
|
|
|