mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-14 08:16:24 +01:00
887c4449d9
Mon Jan 4 02:58:13 CST 1999 Shawn T. Amundson <amundson@gtk.org> * Released GLib 1.1.12 * INSTALL: NEWS: README: configure.in: glib.spec: docs/glib-config.1: version=1.1.12 * tests/Makefile.am: fixed so it works properly with builddir and srcdir.
27 lines
609 B
Makefile
27 lines
609 B
Makefile
|
|
INCLUDES = -I$(top_srcdir)
|
|
|
|
TESTS = \
|
|
alloca-test \
|
|
array-test \
|
|
hash-test \
|
|
list-test \
|
|
node-test \
|
|
relation-test \
|
|
slist-test \
|
|
string-test \
|
|
tree-test
|
|
|
|
noinst_PROGRAMS = $(TESTS)
|
|
|
|
alloca_test_LDADD = $(top_builddir)/libglib.la
|
|
array_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
|
|
tree_test_LDADD = $(top_builddir)/libglib.la
|
|
|