1check_PROGRAMS = \
2	test-picking \
3	test-text-perf \
4	test-state \
5	test-state-interactive \
6	test-state-hidden \
7	test-state-mini \
8	test-state-pick
9
10common_ldadd = $(top_builddir)/clutter/libmuffin-clutter-@MUFFIN_PLUGIN_API_VERSION@.la
11
12LDADD = $(common_ldadd) $(CLUTTER_LIBS) $(LIBM)
13
14AM_CFLAGS = $(CLUTTER_CFLAGS)
15
16AM_CPPFLAGS = \
17	-DG_DISABLE_SINGLE_INCLUDES \
18	-DGLIB_DISABLE_DEPRECATION_WARNINGS \
19	-DCOGL_DISABLE_DEPRECATION_WARNINGS \
20	-DCLUTTER_DISABLE_DEPRECATION_WARNINGS \
21	-DTESTS_DATA_DIR=\""$(top_srcdir)/tests/data/"\" \
22	-I$(top_srcdir)/../cogl                 \
23	-I$(top_builddir)/../cogl               \
24	-I$(top_builddir)/../cogl/cogl          \
25	-I$(top_srcdir) \
26	-I$(top_builddir) \
27	-I$(top_srcdir)/clutter \
28	-I$(top_builddir)/clutter
29
30perf-report: check
31
32check:
33	for a in $(noinst_PROGRAMS);do ./$$a;done;true
34
35test_picking_SOURCES = test-picking.c
36test_text_perf_SOURCES = test-text-perf.c
37test_state_SOURCES = test-state.c
38test_state_hidden_SOURCES = test-state-hidden.c
39test_state_pick_SOURCES = test-state-pick.c
40test_state_interactive_SOURCES = test-state-interactive.c
41test_state_mini_SOURCES = test-state-mini.c
42
43EXTRA_DIST = Makefile-retrospect Makefile-tests create-report.rb test-common.h
44