diff options
Diffstat (limited to 'tests/Makefile.am')
-rw-r--r-- | tests/Makefile.am | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 9510e2c..6f80d93 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1,18 +1,22 @@ NULL = -noinst_PROGRAMS = util +noinst_PROGRAMS = \ + coroutine \ + util \ + $(NULL) + TESTS = $(noinst_PROGRAMS) AM_CPPFLAGS = \ $(GIO_CFLAGS) -I$(top_srcdir)/gtk \ -DG_LOG_DOMAIN=\"GSpice\" \ $(NULL) -AM_LDFLAGS = $(GIO_LIBS) -util_SOURCES = \ - $(top_srcdir)/gtk/spice-util-priv.h \ - $(top_srcdir)/gtk/spice-util.c \ - $(top_srcdir)/gtk/spice-util.h \ - util.c \ +AM_LDFLAGS = $(GIO_LIBS) -static + +LDADD = \ + $(top_builddir)/gtk/libspice-client-glib-2.0.la \ $(NULL) +util_SOURCES = util.c +coroutine_SOURCES = coroutine.c |