mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-02 15:46:17 +01:00
189 lines
5.0 KiB
Makefile
189 lines
5.0 KiB
Makefile
include $(top_srcdir)/Makefile.decl
|
|
|
|
SUBDIRS=gobject refcount
|
|
|
|
AM_CPPFLAGS = \
|
|
$(gmodule_INCLUDES) \
|
|
$(GLIB_DEBUG_FLAGS)
|
|
|
|
AM_CFLAGS = -g
|
|
|
|
EFENCE=
|
|
|
|
libglib = $(top_builddir)/glib/libglib-2.0.la
|
|
libgthread = $(top_builddir)/gthread/libgthread-2.0.la
|
|
libgmodule = $(top_builddir)/gmodule/libgmodule-2.0.la
|
|
libgobject = $(top_builddir)/gobject/libgobject-2.0.la
|
|
|
|
libadd_libgmodule = $(libgmodule)
|
|
libadd_libglib = $(libglib)
|
|
if PLATFORM_WIN32
|
|
no_undefined = -no-undefined
|
|
|
|
module_test_exp = module-test.exp
|
|
|
|
module-test.exp: module-test.o
|
|
dlltool --output-exp module-test.exp module-test.o
|
|
|
|
spawn_test_win32_gui = spawn-test-win32-gui
|
|
|
|
spawn_test_win32_gui_LDFLAGS = -mwindows
|
|
|
|
endif
|
|
|
|
EXTRA_DIST += \
|
|
$(test_scripts) \
|
|
makefile.msc.in \
|
|
casefold.txt \
|
|
casemap.txt \
|
|
gen-casefold-txt.pl \
|
|
gen-casemap-txt.pl \
|
|
iochannel-test-infile \
|
|
utf8.txt \
|
|
timeloop-basic.c
|
|
|
|
BUILT_EXTRA_DIST = \
|
|
makefile.msc
|
|
|
|
if HAVE_CXX
|
|
CXX_TEST = cxx-test
|
|
cxx_test_LDADD = $(progs_ldadd)
|
|
cxx_test_SOURCES = cxx-test.C
|
|
else
|
|
CXX_TEST =
|
|
endif
|
|
|
|
if ENABLE_TIMELOOP
|
|
timeloop = timeloop timeloop-closure
|
|
endif
|
|
noinst_PROGRAMS = $(TEST_PROGS) \
|
|
testgdate \
|
|
testgdateparser \
|
|
unicode-normalize \
|
|
unicode-collate \
|
|
$(timeloop) \
|
|
errorcheck-mutex-test \
|
|
assert-msg-test \
|
|
datetime
|
|
|
|
TEST_PROGS += testglib
|
|
testglib_SOURCES = testglib.c
|
|
testglib_LDADD = $(libglib)
|
|
|
|
|
|
testgdate_LDADD = $(libglib)
|
|
testgdateparser_LDADD = $(libglib)
|
|
unicode_normalize_LDADD = $(libglib)
|
|
unicode_collate_LDADD = $(libglib)
|
|
errorcheck_mutex_test_LDADD = $(libglib) $(libgthread) $(G_THREAD_LIBS)
|
|
assert_msg_test_LDADD = $(libglib)
|
|
if ENABLE_TIMELOOP
|
|
timeloop_LDADD = $(libglib)
|
|
timeloop_closure_LDADD = $(libglib) $(libgobject)
|
|
endif
|
|
datetime_LDADD = $(libglib)
|
|
|
|
test_programs = \
|
|
atomic-test \
|
|
bit-test \
|
|
$(CXX_TEST) \
|
|
child-test \
|
|
completion-test \
|
|
dirname-test \
|
|
file-test \
|
|
env-test \
|
|
gio-test \
|
|
iochannel-test \
|
|
mainloop-test \
|
|
mapping-test \
|
|
module-test \
|
|
onceinit \
|
|
asyncqueue-test \
|
|
qsort-test \
|
|
relation-test \
|
|
slice-test \
|
|
slice-color \
|
|
slice-concurrent \
|
|
slice-threadinit \
|
|
spawn-test \
|
|
$(spawn_test_win32_gui) \
|
|
thread-test \
|
|
threadpool-test \
|
|
type-test \
|
|
unicode-caseconv \
|
|
unicode-encoding
|
|
|
|
test_scripts = run-collate-tests.sh run-assert-msg-test.sh
|
|
|
|
test_script_support_programs = unicode-collate
|
|
|
|
check_PROGRAMS = $(test_programs) $(test_script_support_programs)
|
|
|
|
TESTS = $(test_programs) $(test_scripts)
|
|
TESTS_ENVIRONMENT = srcdir=$(srcdir) \
|
|
LIBCHARSET_ALIAS_DIR=$(top_builddir)/glib/libcharset \
|
|
MALLOC_CHECK_=2 \
|
|
MALLOC_PERTURB_=$$(($${RANDOM:-256} % 256))
|
|
|
|
progs_ldadd = $(EFENCE) $(libglib) $(EFENCE)
|
|
thread_ldadd = $(libgthread) $(G_THREAD_LIBS) $(progs_ldadd)
|
|
module_ldadd = $(libgmodule) $(G_MODULE_LIBS) $(progs_ldadd)
|
|
|
|
atomic_test_LDADD = $(progs_ldadd)
|
|
bit_test_LDADD = $(progs_ldadd)
|
|
child_test_LDADD = $(thread_ldadd)
|
|
completion_test_LDADD = $(progs_ldadd)
|
|
dirname_test_LDADD = $(progs_ldadd)
|
|
file_test_LDADD = $(progs_ldadd)
|
|
env_test_LDADD = $(progs_ldadd)
|
|
gio_test_LDADD = $(progs_ldadd)
|
|
iochannel_test_LDADD = $(progs_ldadd)
|
|
mainloop_test_LDADD = $(thread_ldadd)
|
|
mapping_test_LDADD = $(progs_ldadd)
|
|
module_test_LDADD = $(module_ldadd) $(module_test_exp)
|
|
module_test_LDFLAGS = $(G_MODULE_LDFLAGS)
|
|
onceinit_LDADD = $(thread_ldadd)
|
|
asyncqueue_test_LDADD = $(thread_ldadd)
|
|
qsort_test_LDADD = $(progs_ldadd)
|
|
relation_test_LDADD = $(progs_ldadd)
|
|
slice_test_SOURCES = slice-test.c memchunks.c
|
|
slice_test_LDADD = $(thread_ldadd)
|
|
slice_color_SOURCES = slice-color.c memchunks.c
|
|
slice_color_LDADD = $(thread_ldadd)
|
|
slice_concurrent_SOURCES = slice-concurrent.c
|
|
slice_concurrent_LDADD = $(thread_ldadd)
|
|
slice_threadinit_SOURCES = slice-threadinit.c
|
|
slice_threadinit_LDADD = $(thread_ldadd)
|
|
spawn_test_LDADD = $(progs_ldadd)
|
|
thread_test_LDADD = $(thread_ldadd)
|
|
threadpool_test_LDADD = $(thread_ldadd)
|
|
type_test_LDADD = $(progs_ldadd)
|
|
unicode_encoding_LDADD = $(progs_ldadd)
|
|
unicode_caseconv_LDADD = $(progs_ldadd)
|
|
|
|
noinst_LTLIBRARIES = libmoduletestplugin_a.la libmoduletestplugin_b.la
|
|
|
|
libmoduletestplugin_a_la_SOURCES = libmoduletestplugin_a.c
|
|
libmoduletestplugin_a_la_LDFLAGS = $(G_MODULE_LDFLAGS) -avoid-version -module $(no_undefined) -rpath $(libdir)
|
|
libmoduletestplugin_a_la_LIBADD = $(G_MODULE_LIBS) $(libadd_libgmodule) $(libadd_libglib)
|
|
|
|
libmoduletestplugin_b_la_SOURCES = libmoduletestplugin_b.c
|
|
libmoduletestplugin_b_la_LDFLAGS = $(G_MODULE_LDFLAGS) -avoid-version -module $(no_undefined) -rpath $(libdir)
|
|
libmoduletestplugin_b_la_LIBADD = $(G_MODULE_LIBS) $(libadd_libgmodule) $(libadd_libglib)
|
|
|
|
dist-hook: $(BUILT_EXTRA_DIST)
|
|
files='$(BUILT_EXTRA_DIST)'; \
|
|
for f in $$files; do \
|
|
if test -f $$f; then d=.; else d=$(srcdir); fi; \
|
|
cp $$d/$$f $(distdir) || exit 1; done
|
|
mkdir $(distdir)/collate; \
|
|
for f in $(srcdir)/collate/* ; do \
|
|
if test -f $$f; then cp $$f $(distdir)/collate; fi; done
|
|
|
|
DISTCLEANFILES = \
|
|
iochannel-test-outfile \
|
|
file-test-get-contents \
|
|
maptest \
|
|
mapchild \
|
|
collate.out
|