1999-08-16 19:58:30 +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
|
2003-03-04 11:10:48 +01:00
|
|
|
AUTOMAKE_OPTIONS = 1.6
|
1999-08-16 19:58:30 +02:00
|
|
|
|
|
|
|
# The name of the module.
|
|
|
|
DOC_MODULE=glib
|
|
|
|
|
|
|
|
# The top-level SGML file.
|
|
|
|
DOC_MAIN_SGML_FILE=glib-docs.sgml
|
|
|
|
|
2001-02-12 18:43:44 +01:00
|
|
|
# Extra options to supply to gtkdoc-scan
|
2001-03-26 21:22:18 +02:00
|
|
|
SCAN_OPTIONS=--deprecated-guards="G_DISABLE_DEPRECATED"
|
2001-02-12 18:43:44 +01:00
|
|
|
|
2003-03-04 11:10:48 +01:00
|
|
|
# The directory containing the source code. Relative to $(srcdir)
|
|
|
|
DOC_SOURCE_DIR=../../..
|
2000-09-07 18:36:56 +02:00
|
|
|
|
2001-02-12 18:43:44 +01:00
|
|
|
# Used for dependencies
|
2001-06-26 18:01:21 +02:00
|
|
|
HFILE_GLOB=$(top_srcdir)/glib/*.h $(top_srcdir)/gmodule/*.h
|
|
|
|
CFILE_GLOB=$(top_srcdir)/glib/*.c $(top_srcdir)/gmodule/*.c
|
2001-02-12 18:43:44 +01:00
|
|
|
|
2000-09-06 17:01:07 +02:00
|
|
|
# Headers to ignore
|
|
|
|
IGNORE_HFILES= \
|
2001-11-22 19:54:47 +01:00
|
|
|
build \
|
2000-09-06 17:01:07 +02:00
|
|
|
gobject \
|
2007-11-29 04:20:16 +01:00
|
|
|
gio \
|
2000-09-06 17:01:07 +02:00
|
|
|
config.h \
|
2005-05-05 16:57:29 +02:00
|
|
|
gdatasetprivate.h \
|
2001-05-19 07:32:50 +02:00
|
|
|
glibintl.h \
|
2001-09-08 20:23:04 +02:00
|
|
|
gbsearcharray.h \
|
2000-09-06 17:01:07 +02:00
|
|
|
gmoduleconf.h \
|
2001-01-05 21:48:43 +01:00
|
|
|
gunibreak.h \
|
2001-09-10 17:50:02 +02:00
|
|
|
gunicomp.h \
|
2000-09-06 17:01:07 +02:00
|
|
|
gunidecomp.h \
|
|
|
|
gunichartables.h \
|
2002-02-22 00:07:34 +01:00
|
|
|
glibconfig-sysdefs.h \
|
2002-12-15 01:03:46 +01:00
|
|
|
gdebug.h \
|
|
|
|
gprintfint.h \
|
2004-09-16 16:16:18 +02:00
|
|
|
galias.h \
|
2005-12-05 06:03:11 +01:00
|
|
|
gmirroringtable.h \
|
2006-10-09 06:24:29 +02:00
|
|
|
gscripttable.h \
|
2005-12-19 22:22:29 +01:00
|
|
|
glib-mirroring-tab \
|
2007-03-15 14:01:31 +01:00
|
|
|
gnulib \
|
|
|
|
pcre \
|
|
|
|
update-pcre
|
1999-08-16 19:58:30 +02:00
|
|
|
|
2003-03-04 11:10:48 +01:00
|
|
|
# Extra options to supply to gtkdoc-mkdb
|
2007-09-16 20:04:19 +02:00
|
|
|
MKDB_OPTIONS=--sgml-mode --output-format=xml
|
2001-02-12 18:43:44 +01:00
|
|
|
|
|
|
|
# Images to copy into HTML directory
|
|
|
|
HTML_IMAGES = \
|
2004-06-16 02:20:54 +02:00
|
|
|
file-name-encodings.png \
|
2001-02-12 18:43:44 +01:00
|
|
|
mainloop-states.gif
|
|
|
|
|
|
|
|
# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE)
|
2002-01-18 00:06:12 +01:00
|
|
|
content_files = \
|
2003-10-24 00:42:31 +02:00
|
|
|
cross.sgml \
|
2002-01-18 00:06:12 +01:00
|
|
|
running.sgml \
|
|
|
|
building.sgml \
|
2002-11-26 15:09:00 +01:00
|
|
|
changes.sgml \
|
2002-01-18 00:06:12 +01:00
|
|
|
compiling.sgml \
|
2002-11-23 02:37:17 +01:00
|
|
|
resources.sgml \
|
2007-03-15 14:01:31 +01:00
|
|
|
regex-syntax.sgml \
|
2003-06-18 01:08:37 +02:00
|
|
|
version.xml \
|
2008-06-12 08:20:04 +02:00
|
|
|
glib-gettextize.xml \
|
|
|
|
gtester.xml \
|
|
|
|
gtester-report.xml
|
2002-11-23 02:37:17 +01:00
|
|
|
|
2003-03-04 11:10:48 +01:00
|
|
|
# Extra options to supply to gtkdoc-fixref
|
|
|
|
FIXXREF_OPTIONS=
|
|
|
|
|
2003-10-24 00:42:31 +02:00
|
|
|
# include common portion ...
|
|
|
|
include $(top_srcdir)/gtk-doc.make
|
|
|
|
|
|
|
|
# Other files to distribute
|
|
|
|
EXTRA_DIST += \
|
2004-06-16 02:20:54 +02:00
|
|
|
file-name-encodings.png \
|
|
|
|
file-name-encodings.sxd \
|
2003-10-24 00:42:31 +02:00
|
|
|
mainloop-states.fig \
|
|
|
|
mainloop-states.png \
|
|
|
|
mainloop-states.eps \
|
|
|
|
version.xml.in
|
|
|
|
|
|
|
|
########################################################################
|
|
|
|
|
2008-06-12 08:20:04 +02:00
|
|
|
man_MANS = \
|
|
|
|
glib-gettextize.1 \
|
|
|
|
gtester.1 \
|
|
|
|
gtester-report.1
|
2003-06-18 01:08:37 +02:00
|
|
|
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)
|
|
|
|
|
|
|
|
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
|
2000-09-06 02:04:49 +02:00
|
|
|
|