mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-05 04:16:16 +01:00
dfa8c540a1
Thu Oct 23 12:38:24 2003 Owen Taylor <otaylor@redhat.com> * === Released 2.3.0 === * tests/gobject/Makefile.am (dist-hook): Remove and extra backslash. * tests/gobject/Makefile.am (EXTRA_DIST): Add testmarshal.list. * glib/Makefile.am (libglib_2_0_la_SOURCES): Add missing gunicode-private.h. * tests/testglib.c (main): Fix a warning. * tests/gobject/ifaceinherit.c: Remove check that wasn't supposed to work (adding an interface already added to the derived class to the base class), fix a bug.
87 lines
1.9 KiB
Makefile
87 lines
1.9 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
AUTOMAKE_OPTIONS = 1.6
|
|
|
|
# The name of the module.
|
|
DOC_MODULE=glib
|
|
|
|
# The top-level SGML file.
|
|
DOC_MAIN_SGML_FILE=glib-docs.sgml
|
|
|
|
# Extra options to supply to gtkdoc-scan
|
|
SCAN_OPTIONS=--deprecated-guards="G_DISABLE_DEPRECATED"
|
|
|
|
# The directory containing the source code. Relative to $(srcdir)
|
|
DOC_SOURCE_DIR=../../..
|
|
|
|
# Used for dependencies
|
|
HFILE_GLOB=$(top_srcdir)/glib/*.h $(top_srcdir)/gmodule/*.h
|
|
CFILE_GLOB=$(top_srcdir)/glib/*.c $(top_srcdir)/gmodule/*.c
|
|
|
|
# Headers to ignore
|
|
IGNORE_HFILES= \
|
|
build \
|
|
gobject \
|
|
config.h \
|
|
glibintl.h \
|
|
gbsearcharray.h \
|
|
gmoduleconf.h \
|
|
gunibreak.h \
|
|
gunicomp.h \
|
|
gunidecomp.h \
|
|
gunichartables.h \
|
|
glibconfig-sysdefs.h \
|
|
gdebug.h \
|
|
gprintfint.h \
|
|
gnulib
|
|
|
|
# Extra options to supply to gtkdoc-mkdb
|
|
MKDB_OPTIONS=--sgml-mode --output-format=xml --ignore-files=trio
|
|
|
|
# Images to copy into HTML directory
|
|
HTML_IMAGES = \
|
|
mainloop-states.gif
|
|
|
|
# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE)
|
|
content_files = \
|
|
cross.sgml \
|
|
running.sgml \
|
|
building.sgml \
|
|
changes.sgml \
|
|
compiling.sgml \
|
|
resources.sgml \
|
|
version.xml \
|
|
glib-gettextize.xml
|
|
|
|
# Extra options to supply to gtkdoc-fixref
|
|
FIXXREF_OPTIONS=
|
|
|
|
# include common portion ...
|
|
include $(top_srcdir)/gtk-doc.make
|
|
|
|
# Other files to distribute
|
|
EXTRA_DIST += \
|
|
mainloop-states.fig \
|
|
mainloop-states.png \
|
|
mainloop-states.eps \
|
|
version.xml.in
|
|
|
|
########################################################################
|
|
|
|
man_MANS = glib-gettextize.1
|
|
|
|
if ENABLE_MAN
|
|
|
|
%.1 : %.xml
|
|
@XSLTPROC@ -nonet http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
|
|
|
|
endif
|
|
|
|
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
|
|
|