mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-12 15:36:17 +01:00
21d0ac27b8
1999-03-14 Jeff Garzik <jgarzik@pobox.com> * gdate.c: Commented out debugging output. * tests/Makefile.am, tests/date-test.c: Added test of the GDate module, based closely on testgdate.c. * tests/Makefile.am: Bugfix - compile tests with @GLIB_DEBUG_FLAGS@.
37 lines
930 B
Makefile
37 lines
930 B
Makefile
|
|
INCLUDES = -I$(top_srcdir) @GLIB_DEBUG_FLAGS@
|
|
|
|
TESTS = \
|
|
array-test \
|
|
date-test \
|
|
dirname-test \
|
|
hash-test \
|
|
list-test \
|
|
node-test \
|
|
queue-test \
|
|
relation-test \
|
|
slist-test \
|
|
stack-test \
|
|
string-test \
|
|
strfunc-test \
|
|
tree-test \
|
|
type-test
|
|
|
|
noinst_PROGRAMS = $(TESTS)
|
|
|
|
array_test_LDADD = $(top_builddir)/libglib.la
|
|
date_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
|
|
queue_test_LDADD = $(top_builddir)/libglib.la
|
|
relation_test_LDADD = $(top_builddir)/libglib.la
|
|
slist_test_LDADD = $(top_builddir)/libglib.la
|
|
stack_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
|
|
|