mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-04 16:33:40 +02:00
Move glib library into a subdirectory, make all GLib include files include
Tue Jun 26 11:43:46 2001 Owen Taylor <otaylor@redhat.com> * configure.in Makefile.am *.[ch] glib/*.[ch] glib/Makefile.am: Move glib library into a subdirectory, make all GLib include files include as <glib/glist.h> * tests/testglib.c tests/testgdate.c tests/testgdateparser.c tests/timeloop.c tests/timeloop-basic.c: Move all tests into the tests/ subdirectory.
This commit is contained in:
@@ -39,3 +39,8 @@ tree-test
|
||||
type-test
|
||||
unicode-encoding
|
||||
gio-test
|
||||
testgdate
|
||||
testgdateparser
|
||||
testglib
|
||||
timeloop
|
||||
timeloop-basic
|
||||
|
@@ -1,8 +1,8 @@
|
||||
INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/gmodule @GLIB_DEBUG_FLAGS@
|
||||
INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/glib -I$(top_srcdir)/gmodule @GLIB_DEBUG_FLAGS@
|
||||
|
||||
EFENCE=
|
||||
|
||||
libglib = $(top_builddir)/libglib-1.3.la
|
||||
libglib = $(top_builddir)/glib/libglib-1.3.la
|
||||
libgthread = $(top_builddir)/gthread/libgthread-1.3.la
|
||||
libgmodule = $(top_builddir)/gmodule/libgmodule-1.3.la
|
||||
libgobject = $(top_builddir)/gobject/libgobject-1.3.la
|
||||
@@ -31,6 +31,17 @@ else
|
||||
CXX_TEST =
|
||||
endif
|
||||
|
||||
if ENABLE_TIMELOOP
|
||||
timeloop = timeloop
|
||||
endif
|
||||
noinst_PROGRAMS = testglib testgdate testgdateparser $(timeloop)
|
||||
testglib_LDADD = $(libglib)
|
||||
testgdate_LDADD = $(libglib)
|
||||
testgdateparser_LDADD = $(libglib)
|
||||
if ENABLE_TIMELOOP
|
||||
timeloop_LDADD = $(libglib)
|
||||
endif
|
||||
|
||||
test_programs = \
|
||||
array-test \
|
||||
$(CXX_TEST) \
|
||||
|
Reference in New Issue
Block a user