glib/tests/Makefile.am
EST 1999 Jeff Garzik 0d0f178c09 Add checks for alloca, defining G_NATIVE_ALLOCA if present.
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.
1999-01-22 19:33:26 +00:00

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