mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 19:36:18 +01:00
2b688f549c
* makefile.msc.in makefile.cygwin.in glibconfig.h.win32.in config.h.win32.in tests/makefile.msc.in tests/makefile.cygwin.in: New files, used to generate corresponding non-.in files when making a dist. This is just so the version numbers will be kept in synch automatically. * configure.in: Also substitute @GLIB_MAJOR_VERSION@, @GLIB_MINOR_VERSION@, and @GLIB_INTERFACE_AGE@. * Makefile.am tests/Makefile.am: Also distribute makefile.cygwin. * gerror.c (g_on_error_query): On Win32, put up a MessageBox and then exit. * glib.def: Add a couple of functions.
48 lines
1.3 KiB
Makefile
48 lines
1.3 KiB
Makefile
|
|
INCLUDES = -I$(top_srcdir) @GLIB_DEBUG_FLAGS@
|
|
|
|
EXTRA_DIST = \
|
|
makefile.msc \
|
|
makefile.cygwin
|
|
|
|
TESTS = \
|
|
array-test \
|
|
date-test \
|
|
dirname-test \
|
|
hash-test \
|
|
list-test \
|
|
node-test \
|
|
queue-test \
|
|
rand-test \
|
|
relation-test \
|
|
slist-test \
|
|
stack-test \
|
|
string-test \
|
|
strfunc-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
|
|
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
|
|
|
|
makefile.msc: $(top_builddir)/config.status makefile.msc.in
|
|
cd $(top_builddir) && CONFIG_FILES=tests/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
|
|
|
makefile.cygwin: $(top_builddir)/config.status makefile.cygwin.in
|
|
cd $(top_builddir) && CONFIG_FILES=tests/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|