Released GLib 1.1.12

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.
This commit is contained in:
CST 1999 Shawn T. Amundson
1999-01-04 10:07:44 +00:00
committed by Shawn Amundson
parent e5795df8fd
commit 887c4449d9
15 changed files with 135 additions and 16 deletions

View File

@@ -1,5 +1,5 @@
INCLUDES = -I..
INCLUDES = -I$(top_srcdir)
TESTS = \
alloca-test \
@@ -14,13 +14,13 @@ TESTS = \
noinst_PROGRAMS = $(TESTS)
alloca_test_LDADD = ../libglib.la
array_test_LDADD = ../libglib.la
hash_test_LDADD = ../libglib.la
list_test_LDADD = ../libglib.la
node_test_LDADD = ../libglib.la
relation_test_LDADD = ../libglib.la
slist_test_LDADD = ../libglib.la
string_test_LDADD = ../libglib.la
tree_test_LDADD = ../libglib.la
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