gobject/tests: Add missing build dependency
[platform/upstream/glib.git] / gobject / tests / Makefile.am
1 include $(top_srcdir)/glib.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         $(NULL)
23
24 # -----------------------------------------------------------------------------
25
26 test_programs += ifaceproperties
27 ifaceproperties_SOURCES = ifaceproperties.c testcommon.h
28
29 # -----------------------------------------------------------------------------
30
31 test_programs += signals
32 signals_SOURCES = signals.c
33 nodist_signals_SOURCES = marshalers.c marshalers.h
34 signals.o: marshalers.h
35 CLEANFILES += marshalers.h marshalers.c
36 EXTRA_DIST += marshalers.list
37
38 if CROSS_COMPILING
39   glib_genmarshal=$(GLIB_GENMARSHAL)
40 else
41   glib_genmarshal=$(top_builddir)/gobject/glib-genmarshal
42 endif
43
44 marshalers.h: Makefile.am marshalers.list
45         $(AM_V_GEN) $(glib_genmarshal) --prefix=test $(srcdir)/marshalers.list --header --valist-marshallers > marshalers.h
46
47 marshalers.c: Makefile.am marshalers.h marshalers.list
48         $(AM_V_GEN) (echo "#include \"marshalers.h\""; $(glib_genmarshal) --prefix=test $(srcdir)/marshalers.list --body --valist-marshallers) > $@.tmp && mv $@.tmp $@