mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-06 09:26:17 +01:00
dc22ea7760
Thu Jan 21 12:40:11 EST 1999 Jeff Garzik <jgarzik@pobox.com> * gmodule/gmodule-dl.c (_g_module_build_path): Add braces to eliminate an ambiguous else warning. * tests/{Makefile.am, string-test.c, strfunc-test.c}: Separate string and strfunc tests, working towards goal of having separate test for each of the GLib modules. Add a couple GString length tests.
31 lines
733 B
Makefile
31 lines
733 B
Makefile
|
|
INCLUDES = -I$(top_srcdir)
|
|
|
|
TESTS = \
|
|
array-test \
|
|
dirname-test \
|
|
hash-test \
|
|
list-test \
|
|
node-test \
|
|
relation-test \
|
|
slist-test \
|
|
string-test \
|
|
strfunc-test \
|
|
tree-test \
|
|
type-test
|
|
|
|
noinst_PROGRAMS = $(TESTS)
|
|
|
|
array_test_LDADD = $(top_builddir)/libglib.la
|
|
dirname_test_LDADD = $(top_builddir)/libglib.la
|
|
hash_test_LDADD = $(top_builddir)/libglib.la
|
|
list_test_LDADD = $(top_builddir)/libglib.la
|
|
node_test_LDADD = $(top_builddir)/libglib.la
|
|
relation_test_LDADD = $(top_builddir)/libglib.la
|
|
slist_test_LDADD = $(top_builddir)/libglib.la
|
|
string_test_LDADD = $(top_builddir)/libglib.la
|
|
strfunc_test_LDADD = $(top_builddir)/libglib.la
|
|
tree_test_LDADD = $(top_builddir)/libglib.la
|
|
type_test_LDADD = $(top_builddir)/libglib.la
|
|
|