1include $(top_srcdir)/build-aux/autotools/Makefile.am.silent
2
3common_ldadd = $(top_builddir)/clutter/libclutter-@CLUTTER_API_VERSION@.la
4
5check_PROGRAMS = \
6	test-text \
7	test-picking \
8	test-text-perf \
9	test-random-text \
10	test-cogl-perf
11
12AM_CFLAGS = $(CLUTTER_CFLAGS) $(MAINTAINER_CFLAGS)
13
14AM_CPPFLAGS = \
15	-DG_DISABLE_SINGLE_INCLUDES \
16	-DGLIB_DISABLE_DEPRECATION_WARNINGS \
17	-DCOGL_DISABLE_DEPRECATION_WARNINGS \
18	-DCLUTTER_DISABLE_DEPRECATION_WARNINGS \
19	-DTESTS_DATA_DIR=\""$(top_srcdir)/tests/data/"\" \
20	-I$(top_srcdir) \
21	-I$(top_builddir) \
22	-I$(top_srcdir)/clutter \
23	-I$(top_builddir)/clutter
24
25LDADD = $(common_ldadd) $(CLUTTER_LIBS) $(LIBM)
26
27test_text_SOURCES = test-text.c
28test_picking_SOURCES = test-picking.c
29test_text_perf_SOURCES = test-text-perf.c
30test_random_text_SOURCES = test-random-text.c
31test_cogl_perf_SOURCES = test-cogl-perf.c
32
33-include $(top_srcdir)/build-aux/autotools/Makefile.am.gitignore
34