1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
## arch-tag: Automake rules for test programs
## Process this file with automake to produce Makefile.in
if FALSE
#TESTS = test-rhythmdb-simple test-rhythmdb-indexing \
# test-rhythmdb-query test-rhythmdb-tree-serialization \
# test-rhythmdb-tree-deserialization \
# test-rhythmdb-view
TESTS =
noinst_PROGRAMS = test-cmdline $(TESTS)
test_rhythmdb_simple_SOURCES = test-rhythmdb-simple.c
test_rhythmdb_simple_LDADD = \
$(top_builddir)/rhythmdb/librhythmdb.la \
$(top_builddir)/lib/librb.la \
$(RHYTHMBOX_LIBS)
test_rhythmdb_indexing_SOURCES = test-rhythmdb-indexing.c
test_rhythmdb_indexing_LDADD = \
$(top_builddir)/rhythmdb/librhythmdb.la \
$(top_builddir)/lib/librb.la \
$(RHYTHMBOX_LIBS)
test_rhythmdb_query_SOURCES = test-rhythmdb-query.c
test_rhythmdb_query_LDADD = \
$(top_builddir)/rhythmdb/librhythmdb.la \
$(top_builddir)/lib/librb.la \
$(RHYTHMBOX_LIBS)
test_rhythmdb_tree_serialization_SOURCES = test-rhythmdb-tree-serialization.c
test_rhythmdb_tree_serialization_LDADD = \
$(top_builddir)/rhythmdb/librhythmdb.la \
$(top_builddir)/lib/librb.la \
$(RHYTHMBOX_LIBS)
test_rhythmdb_tree_deserialization_SOURCES = test-rhythmdb-tree-deserialization.c
test_rhythmdb_tree_deserialization_LDADD = \
$(top_builddir)/rhythmdb/librhythmdb.la \
$(top_builddir)/lib/librb.la \
$(RHYTHMBOX_LIBS)
test_rhythmdb_view_SOURCES = test-rhythmdb-view.c
test_rhythmdb_view_LDADD = \
$(top_builddir)/rhythmdb/librhythmdb.la \
$(top_builddir)/lib/librb.la \
$(top_builddir)/widgets/librbwidgets.la \
$(RHYTHMBOX_LIBS)
test_cmdline_SOURCES = test-cmdline.c
test_cmdline_LDADD = \
$(top_builddir)/monkey-media/libmonkey-media.la \
$(RHYTHMBOX_LIBS)
test_cmdline_LDFLAGS = -export-dynamic
if HAVE_AUDIOCD
noinst_PROGRAMS += test-cd
test_cd_SOURCES = test-cd.c
test_cd_LDADD = \
$(top_builddir)/monkey-media/libmonkey-media.la \
$(RHYTHMBOX_LIBS)
test_cd_LDFLAGS = -export-dynamic
endif
INCLUDES = \
-DGNOMELOCALEDIR=\""$(datadir)/locale"\" \
-DG_LOG_DOMAIN=\"Rhythmbox-tests\" \
-I$(top_srcdir) \
$(RHYTHMBOX_CFLAGS) \
-I$(top_srcdir)/lib \
-I$(top_srcdir)/monkey-media \
-I$(top_srcdir)/rhythmdb \
-I$(top_srcdir)/widgets
endif
EXTRA_DIST = deserialization-test1.xml deserialization-test2.xml deserialization-test3.xml
|