mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-04 16:36:17 +01:00
5d097b8591
2003-10-24 Tor Lillqvist <tml@iki.fi> * configure.in: Force shared library (DLL) only on Windows. (I don't think that is controversial?) Remove unnecessary AC_LIBTOOL_WIN32_DLL. Don't use -D_REENTRANT on Win32, it is not used by mingw or MSVC headers. * config.h.win32.in * glibconfig.h.win32.in: Match what configure produces. * glib/gconvert.c * glib/gutils.c: Mark a couple of functions and variables that aren't public as static. * glib/gnulib/g-gnulib.h: Undef HAVE_SNPRINTF before (re)defining it potentially differently, to silence compiler. * glib/glib.def: Add some missing entries. * tests/gobject/Makefile.am (LDADD): Reorder, put libgobject after libtestgobject. * tests/gobject/ifaceproperties.c (main): NULL-terminate arg list to g_object_set() and _get().
82 lines
2.1 KiB
Makefile
82 lines
2.1 KiB
Makefile
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/glib \
|
|
-I$(top_srcdir)/gmodule \
|
|
$(GLIB_DEBUG_FLAGS)
|
|
|
|
libglib = $(top_builddir)/glib/libglib-2.0.la
|
|
libgthread = $(top_builddir)/gthread/libgthread-2.0.la
|
|
libgmodule = $(top_builddir)/gmodule/libgmodule-2.0.la
|
|
libgobject = $(top_builddir)/gobject/libgobject-2.0.la
|
|
|
|
########################################################################
|
|
|
|
noinst_LTLIBRARIES = libtestgobject.la
|
|
|
|
libtestgobject_la_SOURCES = \
|
|
testcommon.h \
|
|
testmarshal.h \
|
|
testmarshal.c \
|
|
testmodule.c \
|
|
testmodule.h
|
|
|
|
if CROSS_COMPILING
|
|
glib_genmarshal=$(GLIB_GENMARSHAL)
|
|
else
|
|
glib_genmarshal=$(top_builddir)/gobject/glib-genmarshal
|
|
endif
|
|
|
|
testmarshal.h: stamp-testmarshal.h
|
|
@true
|
|
stamp-testmarshal.h: @REBUILD@ testmarshal.list $(glib_genmarshal)
|
|
$(glib_genmarshal) --prefix=test_marshal $(srcdir)/testmarshal.list --header >> xgen-gmh \
|
|
&& (cmp -s xgen-gmh testmarshal.h 2>/dev/null || cp xgen-gmh testmarshal.h) \
|
|
&& rm -f xgen-gmh xgen-gmh~ \
|
|
&& echo timestamp > $@
|
|
testmarshal.c: @REBUILD@ testmarshal.list $(glib_genmarshal)
|
|
$(glib_genmarshal) --prefix=test_marshal $(srcdir)/testmarshal.list --body >> xgen-gmc \
|
|
&& cp xgen-gmc testmarshal.c \
|
|
&& rm -f xgen-gmc xgen-gmc~
|
|
|
|
BUILT_SOURCES = testmarshal.h testmarshal.c
|
|
CLEANFILES = stamp-testmarshal.h
|
|
|
|
########################################################################
|
|
|
|
LDADD = libtestgobject.la $(libgobject)
|
|
|
|
test_programs = \
|
|
accumulator \
|
|
defaultiface \
|
|
ifacecheck \
|
|
ifaceinit \
|
|
ifaceinherit \
|
|
ifaceproperties \
|
|
override
|
|
|
|
check_PROGRAMS = $(test_programs)
|
|
|
|
TESTS = $(test_programs)
|
|
TESTS_ENVIRONMENT = srcdir=$(srcdir) \
|
|
LIBCHARSET_ALIAS_DIR=$(top_builddir)/glib/libcharset
|
|
|
|
########################################################################
|
|
|
|
EXTRA_DIST = \
|
|
testmarshal.list
|
|
|
|
BUILT_EXTRA_DIST = \
|
|
testmarshal.h \
|
|
testmarshal.c
|
|
|
|
dist-hook: $(BUILT_EXTRA_DIST)
|
|
files='$(BUILT_EXTRA_DIST)'; \
|
|
for f in $$files; do \
|
|
if test -f $$f; then d=.; else d=$(srcdir); fi; \
|
|
cp $$d/$$f $(distdir) || exit 1; done
|
|
|
|
distclean-local:
|
|
if test $(srcdir) = .; then :; else \
|
|
rm -f $(BUILT_EXTRA_DIST); \
|
|
fi
|