mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-04 18:27:36 +00:00
3e8189ad8f
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13822 d0543943-73ff-0310-b7d9-9358b9ac24b2
29 lines
1.4 KiB
Makefile
29 lines
1.4 KiB
Makefile
MAINTAINERCLEANFILES = Makefile.in
|
|
|
|
INCLUDES = -Iinclude \
|
|
-I$(top_srcdir)/platforms/libunimrcp-client/include \
|
|
-I$(top_srcdir)/libs/mrcp-client/include \
|
|
-I$(top_srcdir)/libs/mrcp-signaling/include \
|
|
-I$(top_srcdir)/libs/mrcpv2-transport/include \
|
|
-I$(top_srcdir)/libs/mrcp/include \
|
|
-I$(top_srcdir)/libs/mrcp/message/include \
|
|
-I$(top_srcdir)/libs/mrcp/control/include \
|
|
-I$(top_srcdir)/libs/mrcp/resources/include \
|
|
-I$(top_srcdir)/libs/mpf/include \
|
|
-I$(top_srcdir)/libs/apr-toolkit/include \
|
|
$(UNIMRCP_APR_INCLUDES) $(UNIMRCP_APU_INCLUDES)
|
|
|
|
bin_PROGRAMS = unimrcpclient
|
|
unimrcpclient_SOURCES = src/main.c \
|
|
src/demo_framework.c \
|
|
src/demo_synth_application.c \
|
|
src/demo_recog_application.c \
|
|
src/demo_bypass_application.c \
|
|
src/demo_discover_application.c \
|
|
src/demo_util.c
|
|
unimrcpclient_LDADD = $(top_builddir)/platforms/libunimrcp-client/libunimrcpclient.la
|
|
|
|
if ISMAC
|
|
unimrcpclient_LDFLAGS = -framework CoreFoundation -framework SystemConfiguration
|
|
endif
|