2014-11-13 16:09:50 -05:00
|
|
|
if HAVE_WIN32
|
|
|
|
libexec_PROGRAMS = ringcli
|
|
|
|
ringcli_SOURCES = winmain.cpp
|
|
|
|
#FIXME This is temporary
|
|
|
|
ringcli_LDADD = $(SPEEX_LIBS)
|
|
|
|
endif
|
|
|
|
|
2014-11-17 15:47:11 -05:00
|
|
|
if HAVE_OSX
|
|
|
|
libexec_PROGRAMS = ringcli
|
|
|
|
ringcli_SOURCES = osxmain.cpp
|
|
|
|
ringcli_CXXFLAGS = -I$(top_srcdir)/src \
|
|
|
|
-DTOP_BUILDDIR=\"$$(cd "$(top_builddir)"; pwd)\"
|
2015-01-08 15:43:13 -05:00
|
|
|
ringcli_LDADD = $(top_builddir)/src/libring.la
|
2014-11-17 15:47:11 -05:00
|
|
|
endif
|
|
|
|
|
2015-01-08 15:43:13 -05:00
|
|
|
if RING_DBUS
|
2014-05-23 14:53:49 -04:00
|
|
|
SUBDIRS=dbus
|
|
|
|
|
2015-01-08 15:43:13 -05:00
|
|
|
libexec_PROGRAMS = dring
|
2014-05-23 14:53:49 -04:00
|
|
|
|
2015-01-08 15:43:13 -05:00
|
|
|
dring_SOURCES = main.cpp
|
2014-05-23 14:53:49 -04:00
|
|
|
|
2015-01-08 15:43:13 -05:00
|
|
|
dring_CXXFLAGS=-I$(top_srcdir)/src ${DBUSCPP_CFLAGS} \
|
2014-05-23 14:53:49 -04:00
|
|
|
-DTOP_BUILDDIR=\"$$(cd "$(top_builddir)"; pwd)\"
|
|
|
|
|
2015-01-08 15:43:13 -05:00
|
|
|
dring_LDADD = dbus/libclient_dbus.la ${DBUSCPP_LIBS} $(top_builddir)/src/libring.la
|
2014-11-13 16:09:50 -05:00
|
|
|
endif
|