mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-06 09:26:17 +01:00
0d0f178c09
Fri Jan 22 13:41:41 EST 1999 Jeff Garzik <jgarzik@pobox.com> * configure.in: Add checks for alloca, defining G_NATIVE_ALLOCA if present. * galloca.c: Import replacement alloca implementation from gettext 0.10.35. Begin to convert to using GLib types and functions. * glib.h: New macros g_alloca, g_alloca_gc, g_alloca_new, to perform stack-based memory allocations. * tests/Makefile.am, tests/queue-test.c, tests/alloca-test.c: New tests for g_alloca_*, GQueue ADT. * tests/stack-test.c: Fix pointer casts, include config.h, and call g_stack_free at end of run.
37 lines
915 B
Makefile
37 lines
915 B
Makefile
|
|
INCLUDES = -I$(top_srcdir)
|
|
|
|
TESTS = \
|
|
alloca-test \
|
|
array-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)
|
|
|
|
alloca_test_LDADD = $(top_builddir)/libglib.la
|
|
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
|
|
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
|
|
|