Add a performance test for signal connection
[platform/upstream/glib.git] / gobject / tests / Makefile.am
1 include $(top_srcdir)/glib-tap.mk
2
3 LDADD = ../libgobject-2.0.la $(top_builddir)/glib/libglib-2.0.la
4 AM_CPPFLAGS = -g $(gobject_INCLUDES) $(GLIB_DEBUG_FLAGS)
5 DEFS = -DG_LOG_DOMAIN=\"GLib-GObject\"
6 AM_CFLAGS = $(GLIB_WARN_CFLAGS)
7
8 # -----------------------------------------------------------------------------
9
10 test_programs = \
11         qdata                           \
12         boxed                           \
13         enums                           \
14         param                           \
15         threadtests                     \
16         dynamictests                    \
17         binding                         \
18         properties                      \
19         reference                       \
20         valuearray                      \
21         type                            \
22         private                         \
23         closure                         \
24         object                          \
25         signal-handler                  \
26         $(NULL)
27
28 # -----------------------------------------------------------------------------
29
30 test_programs += ifaceproperties
31 ifaceproperties_SOURCES = ifaceproperties.c testcommon.h
32
33 # -----------------------------------------------------------------------------
34
35 test_programs += signals
36 signals_SOURCES = signals.c
37 nodist_signals_SOURCES = marshalers.c marshalers.h
38 signals.o: marshalers.h
39 CLEANFILES += marshalers.h marshalers.c
40 EXTRA_DIST += marshalers.list
41
42 if CROSS_COMPILING
43   glib_genmarshal=$(GLIB_GENMARSHAL)
44 else
45   glib_genmarshal=$(top_builddir)/gobject/glib-genmarshal
46 endif
47
48 marshalers.h: Makefile.am marshalers.list
49         $(AM_V_GEN) $(glib_genmarshal) --prefix=test $(srcdir)/marshalers.list --header --valist-marshallers > marshalers.h
50
51 marshalers.c: Makefile.am marshalers.h marshalers.list
52         $(AM_V_GEN) (echo "#include \"marshalers.h\""; $(glib_genmarshal) --prefix=test $(srcdir)/marshalers.list --body --valist-marshallers) > $@.tmp && mv $@.tmp $@