mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-26 15:36:14 +01:00
87c7aeb93b
Sat Jul 24 20:11:35 1999 Tim Janik <timj@gtk.org> * merged GLib 1.3.0 with glib-1.2.3 from Fri Jul 16 22:18:36. * incorporated proposed cleanups from gtk-devel-list. * bumped version number to GLib-1.3.1 * glib.h: * gqueue.c: * gstring.c: * glist.c: removed string tokenisation (we got g_strsplit() and g_strjoin() already) and readline functions. s/g_list_delete/g_list_delete_link. implemented g_slist_delete_link. removed notion of g_ATEXIT() macro in glib.h, this is an *internal* macro, g_atexit() is provided for public consumption. added GTrashStack inline utility functions. reimplement double eneded queues. removed GStack implementation, people can use a queue or a (singly) linked list for this task. deprecated g_strescape(), we need the SunOS variants here. * gdate.c: added DEBUG_MSG() macro to wrap old messages. * *.*: CVS merges. * upgrade to libtool 1.3.3.
53 lines
1.4 KiB
Makefile
53 lines
1.4 KiB
Makefile
|
|
INCLUDES = -I$(top_srcdir) @GLIB_DEBUG_FLAGS@
|
|
|
|
EXTRA_DIST = \
|
|
makefile.msc \
|
|
makefile.cygwin
|
|
|
|
EXTRA_DIST = \
|
|
makefile.msc
|
|
|
|
TESTS = \
|
|
array-test \
|
|
date-test \
|
|
dirname-test \
|
|
hash-test \
|
|
list-test \
|
|
node-test \
|
|
queue-test \
|
|
rand-test \
|
|
relation-test \
|
|
slist-test \
|
|
strfunc-test \
|
|
string-test \
|
|
thread-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
|
|
rand_test_LDADD = $(top_builddir)/libglib.la
|
|
relation_test_LDADD = $(top_builddir)/libglib.la
|
|
slist_test_LDADD = $(top_builddir)/libglib.la
|
|
strfunc_test_LDADD = $(top_builddir)/libglib.la
|
|
string_test_LDADD = $(top_builddir)/libglib.la
|
|
thread_test_LDADD = $(top_builddir)/libglib.la \
|
|
$(top_builddir)/gthread/libgthread.la @G_THREAD_LIBS@
|
|
tree_test_LDADD = $(top_builddir)/libglib.la
|
|
type_test_LDADD = $(top_builddir)/libglib.la
|
|
|
|
makefile.msc: $(top_builddir)/config.status $(top_srcdir)/tests/makefile.msc.in
|
|
cd $(top_builddir) && CONFIG_FILES=tests/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
|
|
|
makefile.cygwin: $(top_builddir)/config.status $(top_srcdir)/tests/makefile.cygwin.in
|
|
cd $(top_builddir) && CONFIG_FILES=tests/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
|
|