mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-02 15:46:17 +01:00
83ee0d947d
Starts 100 threads which ref/unref a dynamic class to test the recent changes to class init/uninit.
13 lines
467 B
Makefile
13 lines
467 B
Makefile
include $(top_srcdir)/Makefile.decl
|
|
|
|
INCLUDES = -g -I$(top_srcdir) -I$(top_srcdir)/glib $(GLIB_DEBUG_FLAGS)
|
|
|
|
noinst_PROGRAMS = $(TEST_PROGS)
|
|
libgobject_LDADD = ../libgobject-2.0.la $(top_builddir)/gthread/libgthread-2.0.la $(top_builddir)/glib/libglib-2.0.la
|
|
|
|
TEST_PROGS += threadtests dynamictests
|
|
threadtests_SOURCES = threadtests.c
|
|
threadtests_LDADD = $(libgobject_LDADD)
|
|
dynamictests_SOURCES = dynamictests.c
|
|
dynamictests_LDADD = $(libgobject_LDADD)
|