2011-01-19 06:38:25 -05:00
|
|
|
include $(top_srcdir)/build/autotools/Makefile.am.silent
|
|
|
|
|
2013-08-16 05:57:54 -04:00
|
|
|
check_PROGRAMS = \
|
2011-01-19 06:38:25 -05:00
|
|
|
test-picking \
|
|
|
|
test-text-perf \
|
|
|
|
test-state \
|
|
|
|
test-state-interactive \
|
|
|
|
test-state-hidden \
|
|
|
|
test-state-mini \
|
|
|
|
test-state-pick
|
|
|
|
|
2011-09-21 13:05:03 -04:00
|
|
|
common_ldadd = $(top_builddir)/clutter/libclutter-@CLUTTER_API_VERSION@.la
|
2011-08-27 18:58:26 -04:00
|
|
|
|
|
|
|
LDADD = $(common_ldadd) $(CLUTTER_LIBS) -lm
|
|
|
|
|
2013-05-15 10:18:13 -04:00
|
|
|
AM_CFLAGS = $(CLUTTER_CFLAGS)
|
|
|
|
|
|
|
|
AM_CPPFLAGS = \
|
2011-01-19 06:38:25 -05:00
|
|
|
-DG_DISABLE_SINGLE_INCLUDES \
|
2011-12-06 12:53:37 -05:00
|
|
|
-DGLIB_DISABLE_DEPRECATION_WARNINGS \
|
2013-07-02 17:24:31 -04:00
|
|
|
-DCOGL_DISABLE_DEPRECATION_WARNINGS \
|
2011-12-06 12:53:37 -05:00
|
|
|
-DCLUTTER_DISABLE_DEPRECATION_WARNINGS \
|
2013-05-15 10:18:13 -04:00
|
|
|
-DTESTS_DATA_DIR=\""$(top_srcdir)/tests/data/"\" \
|
|
|
|
-I$(top_srcdir) \
|
|
|
|
-I$(top_builddir) \
|
|
|
|
-I$(top_srcdir)/clutter \
|
|
|
|
-I$(top_builddir)/clutter
|
2011-01-19 06:38:25 -05:00
|
|
|
|
|
|
|
perf-report: check
|
|
|
|
|
|
|
|
check:
|
|
|
|
for a in $(noinst_PROGRAMS);do ./$$a;done;true
|
|
|
|
|
|
|
|
test_picking_SOURCES = test-picking.c
|
|
|
|
test_text_perf_SOURCES = test-text-perf.c
|
|
|
|
test_state_SOURCES = test-state.c
|
|
|
|
test_state_hidden_SOURCES = test-state-hidden.c
|
|
|
|
test_state_pick_SOURCES = test-state-pick.c
|
|
|
|
test_state_interactive_SOURCES = test-state-interactive.c
|
|
|
|
test_state_mini_SOURCES = test-state-mini.c
|
|
|
|
|
|
|
|
EXTRA_DIST = Makefile-retrospect Makefile-tests create-report.rb test-common.h
|
|
|
|
|
|
|
|
-include $(top_srcdir)/build/autotools/Makefile.am.gitignore
|