2000-09-06 06:32:45 +02:00
|
|
|
## Process this file with automake to produce Makefile.in
|
initialize automake variables EXTRA_DIST and TEST_PROGS for unconditional
2007-11-21 21:06:47 Tim Janik <timj@imendio.com>
* Makefile.decl: initialize automake variables EXTRA_DIST and
TEST_PROGS for unconditional appending via += in other makefiles.
define recursive test targets: test, test-report, perf-report,
full-report, as described here:
http://mail.gnome.org/archives/gtk-devel-list/2007-November/msg00000.html
* Makefile.am:
* build/win32/vs8/Makefile.am, build/win32/dirent/Makefile.am:
* build/win32/Makefile.am, build/Makefile.am:
* docs/Makefile.am, docs/reference/Makefile.am:
* docs/reference/glib/Makefile.am, docs/reference/gobject/Makefile.am:
* gmodule/Makefile.am, tests/Makefile.am:
* tests/refcount/Makefile.am, tests/gobject/Makefile.am:
* glib/update-pcre/Makefile.am, glib/libcharset/Makefile.am:
* glib/tests/Makefile.am, glib/pcre/Makefile.am:
* glib/gnulib/Makefile.am, gobject/Makefile.am, m4macros/Makefile.am:
* gthread/Makefile.am, glib/Makefile.am:
include $(top_srcdir)/Makefile.decl, adapted EXTRA_DIST assignments.
* glib/tests/Makefile.am: removed example testing rules.
* glib/tests/testing.c: conditionalized performance and slow tests.
* glib/gtestutils.h:
* glib/gtestutils.c: work around g_test_config_vars not changing its
exported value after value assignments, aparently due to symbol aliases.
* glib/gtester.c: fixed off-by-one error which produced junk in logs.
* configure.in: check for python >= 2.4 and provide $PYTHON for scripts.
svn path=/trunk/; revision=5914
2007-11-21 21:09:46 +01:00
|
|
|
include $(top_srcdir)/Makefile.decl
|
2000-09-06 06:32:45 +02:00
|
|
|
|
|
|
|
# The name of the module.
|
|
|
|
DOC_MODULE=gobject
|
2001-03-07 21:11:09 +01:00
|
|
|
|
2000-09-06 06:32:45 +02:00
|
|
|
# The top-level SGML file.
|
|
|
|
DOC_MAIN_SGML_FILE=gobject-docs.sgml
|
2001-03-07 21:11:09 +01:00
|
|
|
|
2001-02-12 18:43:44 +01:00
|
|
|
# Extra options to supply to gtkdoc-scan
|
|
|
|
SCAN_OPTIONS=
|
2001-03-07 21:11:09 +01:00
|
|
|
|
2003-03-04 11:10:48 +01:00
|
|
|
# The directory containing the source code. Relative to $(srcdir)
|
|
|
|
DOC_SOURCE_DIR=../../../gobject
|
2000-09-07 18:36:56 +02:00
|
|
|
|
2001-02-12 18:43:44 +01:00
|
|
|
HFILE_GLOB=$(top_srcdir)/gobject/*.h
|
|
|
|
CFILE_GLOB=$(top_srcdir)/gobject/*.c
|
2001-03-07 21:11:09 +01:00
|
|
|
|
2004-10-26 18:10:52 +02:00
|
|
|
# Headers to ignore
|
|
|
|
IGNORE_HFILES=gobjectalias.h
|
|
|
|
|
2001-02-12 18:43:44 +01:00
|
|
|
# CFLAGS and LDFLAGS for compiling scan program. Only needed
|
|
|
|
# if $(DOC_MODULE).types is non-empty.
|
2003-10-17 00:24:57 +02:00
|
|
|
INCLUDES = \
|
2003-10-24 00:42:31 +02:00
|
|
|
-I$(srcdir) \
|
2003-10-17 00:24:57 +02:00
|
|
|
-I$(top_srcdir) \
|
2003-10-24 00:42:31 +02:00
|
|
|
-I$(top_srcdir)/glib \
|
2003-10-17 00:24:57 +02:00
|
|
|
-I$(top_builddir) \
|
2003-10-20 20:40:00 +02:00
|
|
|
-I$(top_builddir)/glib \
|
2003-10-17 00:24:57 +02:00
|
|
|
$(GLIB_DEBUG_FLAGS)
|
|
|
|
GTKDOC_LIBS = \
|
|
|
|
$(top_builddir)/glib/libglib-2.0.la \
|
|
|
|
$(top_builddir)/gobject/libgobject-2.0.la
|
2001-02-12 18:43:44 +01:00
|
|
|
|
2003-03-04 11:10:48 +01:00
|
|
|
# Extra options to supply to gtkdoc-mkdb
|
|
|
|
MKDB_OPTIONS=
|
2000-09-06 06:32:45 +02:00
|
|
|
|
2003-03-04 11:10:48 +01:00
|
|
|
# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE)
|
2003-06-18 01:08:37 +02:00
|
|
|
content_files = version.xml \
|
|
|
|
glib-mkenums.xml \
|
|
|
|
glib-genmarshal.xml \
|
2005-04-22 12:27:37 +02:00
|
|
|
gobject-query.xml \
|
|
|
|
tut_gobject.xml \
|
|
|
|
tut_gsignal.xml \
|
|
|
|
tut_gtype.xml \
|
|
|
|
tut_howto.xml \
|
|
|
|
tut_intro.xml \
|
|
|
|
tut_tools.xml
|
|
|
|
|
|
|
|
# Images to copy into HTML directory
|
|
|
|
HTML_IMAGES = \
|
|
|
|
$(srcdir)/images/glue.png
|
2000-09-06 06:32:45 +02:00
|
|
|
|
2003-03-04 11:10:48 +01:00
|
|
|
# Extra options to supply to gtkdoc-fixref
|
|
|
|
FIXXREF_OPTIONS=--extra-dir=$(srcdir)/../glib/html
|
2000-09-06 17:01:07 +02:00
|
|
|
|
2003-10-24 00:42:31 +02:00
|
|
|
include $(top_srcdir)/gtk-doc.make
|
|
|
|
|
|
|
|
# Other files to distribute
|
|
|
|
EXTRA_DIST += \
|
|
|
|
gobject.cI \
|
|
|
|
version.xml.in
|
|
|
|
|
|
|
|
########################################################################
|
|
|
|
|
2003-06-18 01:08:37 +02:00
|
|
|
man_MANS = glib-mkenums.1 glib-genmarshal.1 gobject-query.1
|
|
|
|
|
|
|
|
if ENABLE_MAN
|
|
|
|
|
|
|
|
%.1 : %.xml
|
|
|
|
@XSLTPROC@ -nonet http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2003-10-24 00:42:31 +02:00
|
|
|
BUILT_EXTRA_DIST = $(man_MANS)
|
2003-06-18 01:08:37 +02:00
|
|
|
|
2003-10-24 00:42:31 +02:00
|
|
|
dist-hook-local: $(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
|