mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
docs: cleanup makefiles
Remove commented out parts that we don't need. Remove "the wingo addition" - no so useful after all. Narrow down file-globs for plugin docs.
This commit is contained in:
parent
ae8d1227da
commit
d2e0027dca
1 changed files with 6 additions and 30 deletions
|
@ -13,33 +13,13 @@ FORMATS=html
|
||||||
html: html-build.stamp
|
html: html-build.stamp
|
||||||
include $(top_srcdir)/common/upload-doc.mak
|
include $(top_srcdir)/common/upload-doc.mak
|
||||||
|
|
||||||
# generated basefiles
|
|
||||||
#basefiles = \
|
|
||||||
## $(DOC_MODULE).types \
|
|
||||||
# $(DOC_MODULE)-sections.txt \
|
|
||||||
# $(DOC_MODULE)-docs.sgml
|
|
||||||
|
|
||||||
# ugly hack to make -unused.sgml work
|
|
||||||
#unused-build.stamp:
|
|
||||||
# BUILDDIR=`pwd` && \
|
|
||||||
# cd $(srcdir)/tmpl && \
|
|
||||||
# ln -sf gstreamer-libs-unused.sgml \
|
|
||||||
# $$BUILDDIR/tmpl/gstreamer-libs-@GST_MAJORMINOR@-unused.sgml
|
|
||||||
# touch unused-build.stamp
|
|
||||||
|
|
||||||
# these rules are added to create parallel docs using GST_MAJORMINOR
|
|
||||||
#$(basefiles): gstreamer-libs-@GST_MAJORMINOR@%: gstreamer-libs%
|
|
||||||
# cp $< $@
|
|
||||||
|
|
||||||
#CLEANFILES = $(basefiles)
|
|
||||||
|
|
||||||
# The top-level SGML file. Change it if you want.
|
# The top-level SGML file. Change it if you want.
|
||||||
DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml
|
DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml
|
||||||
|
|
||||||
# The directory containing the source code. Relative to $(top_srcdir).
|
# The directory containing the source code. Relative to $(top_srcdir).
|
||||||
# gtk-doc will search all .c & .h files beneath here for inline comments
|
# gtk-doc will search all .c & .h files beneath here for inline comments
|
||||||
# documenting functions and macros.
|
# documenting functions and macros.
|
||||||
DOC_SOURCE_DIR = $(top_srcdir)
|
DOC_SOURCE_DIR = $(top_srcdir)/gst $(top_srcdir)/ext
|
||||||
|
|
||||||
# Extra options to supply to gtkdoc-scan.
|
# Extra options to supply to gtkdoc-scan.
|
||||||
SCAN_OPTIONS=
|
SCAN_OPTIONS=
|
||||||
|
@ -53,14 +33,10 @@ FIXXREF_OPTIONS=--extra-dir=$(GLIB_PREFIX)/share/gtk-doc/html \
|
||||||
--extra-dir=$(GSTPB_PREFIX)/share/gtk-doc/html
|
--extra-dir=$(GSTPB_PREFIX)/share/gtk-doc/html
|
||||||
|
|
||||||
# Used for dependencies.
|
# Used for dependencies.
|
||||||
HFILE_GLOB=$(DOC_SOURCE_DIR)/*/*/*.h
|
HFILE_GLOB= \
|
||||||
CFILE_GLOB=$(DOC_SOURCE_DIR)/*/*/*.c $(DOC_SOURCE_DIR)/*/*/*.cc
|
$(top_srcdir)/gst/*/*.h $(top_srcdir)/ext/*/*.h
|
||||||
|
CFILE_GLOB= \
|
||||||
# this is a wingo addition
|
$(top_srcdir)/gst/*/*.c $(top_srcdir)/ext/*/*.c $ $(top_srcdir)/ext/*/*.cc
|
||||||
# thomasvs: another nice wingo addition would be an explanation on why
|
|
||||||
# this is useful ;)
|
|
||||||
|
|
||||||
SCANOBJ_DEPS =
|
|
||||||
|
|
||||||
# Header files to ignore when scanning.
|
# Header files to ignore when scanning.
|
||||||
IGNORE_HFILES =
|
IGNORE_HFILES =
|
||||||
|
@ -110,7 +86,7 @@ extra_files =
|
||||||
# CFLAGS and LDFLAGS for compiling scan program. Only needed if your app/lib
|
# CFLAGS and LDFLAGS for compiling scan program. Only needed if your app/lib
|
||||||
# contains GtkObjects/GObjects and you want to document signals and properties.
|
# contains GtkObjects/GObjects and you want to document signals and properties.
|
||||||
GTKDOC_CFLAGS = $(GST_BASE_CFLAGS) -I$(top_builddir)
|
GTKDOC_CFLAGS = $(GST_BASE_CFLAGS) -I$(top_builddir)
|
||||||
GTKDOC_LIBS = $(SCANOBJ_DEPS) $(GST_BASE_LIBS)
|
GTKDOC_LIBS = $(GST_BASE_LIBS)
|
||||||
|
|
||||||
GTKDOC_CC=$(LIBTOOL) --tag=CC --mode=compile $(CC)
|
GTKDOC_CC=$(LIBTOOL) --tag=CC --mode=compile $(CC)
|
||||||
GTKDOC_LD=$(LIBTOOL) --tag=CC --mode=link $(CC)
|
GTKDOC_LD=$(LIBTOOL) --tag=CC --mode=link $(CC)
|
||||||
|
|
Loading…
Reference in a new issue