2006-07-26 12:50:22 +00:00
|
|
|
noinst_LTLIBRARIES =
|
2005-12-06 15:36:31 +00:00
|
|
|
|
2006-07-12 08:42:49 +00:00
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/include
|
|
|
|
|
2009-09-07 15:37:59 +00:00
|
|
|
# Symbol file for the master side
|
|
|
|
EXTRA_DIST = master.sym
|
|
|
|
|
2006-07-26 12:50:22 +00:00
|
|
|
if BUILD_MASTER
|
|
|
|
|
2009-09-08 13:37:51 +00:00
|
|
|
noinst_LTLIBRARIES += libdcapi-common-master.la
|
|
|
|
libdcapi_common_master_la_CPPFLAGS = $(AM_CPPFLAGS) $(GLIB_CFLAGS) -DMASTER
|
|
|
|
libdcapi_common_master_la_SOURCES = \
|
2006-04-27 14:52:13 +00:00
|
|
|
cfg-master.c \
|
2006-04-10 12:43:01 +00:00
|
|
|
logger.c \
|
|
|
|
util.c
|
2009-09-08 13:37:51 +00:00
|
|
|
libdcapi_common_master_la_LIBADD = $(GLIB_LIBS)
|
2006-04-10 12:43:01 +00:00
|
|
|
|
2006-07-26 12:50:22 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
if BUILD_CLIENT
|
|
|
|
|
2009-09-08 13:37:51 +00:00
|
|
|
noinst_LTLIBRARIES += libdcapi-common-client.la
|
|
|
|
libdcapi_common_client_la_CPPFLAGS = $(AM_CPPFLAGS) -DCLIENT
|
|
|
|
libdcapi_common_client_la_SOURCES = \
|
2006-04-27 14:52:13 +00:00
|
|
|
cfg-client.c \
|
2006-04-13 09:28:28 +00:00
|
|
|
logger.c \
|
2006-04-10 12:43:01 +00:00
|
|
|
util.c
|
2006-07-26 12:50:22 +00:00
|
|
|
|
|
|
|
endif
|