mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-13 04:46:15 +01:00
8e3a3eef63
2000-10-09 Havoc Pennington <hp@redhat.com> * Makefile.am, tests/Makefile.am: Add new files. * tests/spawn-test.c, tests/shell-test.c: new tests for the shell/spawn stuff * gutils.c (g_find_program_in_path): convert a relative program name into an absolute pathname to an existing executable * gspawn.h, gspawn.c: New fork/exec API * gshell.h, gshell.c: Shell-related utilities, at the moment simply routines to parse argv and quote/unquote strings * guniprop.c (g_unichar_isspace): Return TRUE for the ASCII space characters isspace() returns TRUE for. * gfileutils.c (g_file_get_contents): Convenience function to slurp entire file into a string and return it. Partially written by Joel Becker. (g_file_test): file test function
64 lines
1.6 KiB
Makefile
64 lines
1.6 KiB
Makefile
|
|
INCLUDES = -I$(top_srcdir) @GLIB_DEBUG_FLAGS@
|
|
|
|
EFENCE=
|
|
|
|
EXTRA_DIST = \
|
|
makefile.msc \
|
|
makefile.msc.in \
|
|
makefile.mingw \
|
|
makefile.mingw.in
|
|
|
|
TESTS = \
|
|
array-test \
|
|
date-test \
|
|
dirname-test \
|
|
gio-test \
|
|
hash-test \
|
|
list-test \
|
|
node-test \
|
|
queue-test \
|
|
rand-test \
|
|
relation-test \
|
|
shell-test \
|
|
slist-test \
|
|
spawn-test \
|
|
strfunc-test \
|
|
string-test \
|
|
thread-test \
|
|
threadpool-test \
|
|
tree-test \
|
|
type-test
|
|
|
|
noinst_PROGRAMS = $(TESTS)
|
|
|
|
progs_LDADD = $(EFENCE) $(top_builddir)/libglib-1.3.la $(EFENCE)
|
|
thread_LDADD = $(progs_LDADD) $(top_builddir)/gthread/libgthread-1.3.la @G_THREAD_LIBS@
|
|
|
|
array_test_LDADD = $(progs_LDADD)
|
|
date_test_LDADD = $(progs_LDADD)
|
|
dirname_test_LDADD = $(progs_LDADD)
|
|
gio_test_LDADD = $(progs_LDADD)
|
|
hash_test_LDADD = $(progs_LDADD)
|
|
list_test_LDADD = $(progs_LDADD)
|
|
node_test_LDADD = $(progs_LDADD)
|
|
queue_test_LDADD = $(progs_LDADD)
|
|
rand_test_LDADD = $(progs_LDADD)
|
|
relation_test_LDADD = $(progs_LDADD)
|
|
shell_test_LDADD = $(progs_LDADD)
|
|
slist_test_LDADD = $(progs_LDADD)
|
|
spawn_test_LDADD = $(progs_LDADD)
|
|
strfunc_test_LDADD = $(progs_LDADD)
|
|
string_test_LDADD = $(progs_LDADD)
|
|
thread_test_LDADD = $(thread_LDADD)
|
|
threadpool_test_LDADD = $(thread_LDADD)
|
|
tree_test_LDADD = $(progs_LDADD)
|
|
type_test_LDADD = $(progs_LDADD)
|
|
|
|
makefile.msc: $(top_builddir)/config.status $(top_srcdir)/tests/makefile.msc.in
|
|
cd $(top_builddir) && CONFIG_FILES=tests/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
|
|
|
makefile.mingw: $(top_builddir)/config.status $(top_srcdir)/tests/makefile.mingw.in
|
|
cd $(top_builddir) && CONFIG_FILES=tests/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
|
|