You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
645 B
23 lines
645 B
INCLUDES = @PACKAGE_CFLAGS@ -I$(top_srcdir)
|
|
|
|
AM_CFLAGS = -Wall -Werror @XML_CFLAGS@ @GCOV_CFLAGS@
|
|
AM_LDFLAGS = -rpath @libdir@
|
|
|
|
EXTRA_DIST = mock_sync.h Makefile.in
|
|
|
|
if ENABLE_TESTS
|
|
formatsdir=@OPENSYNC_FORMATSDIR@
|
|
formats_LTLIBRARIES = mockformat.la
|
|
|
|
pluginsdir=@OPENSYNC_PLUGINDIR@
|
|
plugins_LTLIBRARIES = mock_sync.la
|
|
endif
|
|
|
|
mock_sync_la_SOURCES = mock_sync.c
|
|
mock_sync_la_LDFLAGS = -avoid-version -export-dynamic -module @GCOV_LDFLAGS@
|
|
mock_sync_la_LIBADD = @PACKAGE_LIBS@ @LIBS@
|
|
|
|
mockformat_la_SOURCES = mock_format.c
|
|
mockformat_la_LDFLAGS = -avoid-version -export-dynamic -module @GCOV_LDFLAGS@
|
|
mockformat_la_LIBADD = @PACKAGE_LIBS@ @LIBS@
|