summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChristian Hergert <chergert@redhat.com>2019-08-05 15:10:41 -0700
committerChristian Hergert <chergert@redhat.com>2019-08-05 16:28:59 -0700
commiteadd10dbdd5b9b6b0488aeb41d4bf1592ba9d5d2 (patch)
treeffa022cbdd5c154afa6f15541f9525fe07ec43e3 /docs
parent98fb732d2989ba2176d4aa719d8081642e23c984 (diff)
downloadlibpeas-eadd10dbdd5b9b6b0488aeb41d4bf1592ba9d5d2.tar.gz
build: remove autotools
Diffstat (limited to 'docs')
-rw-r--r--docs/Makefile.am1
-rw-r--r--docs/reference/Makefile.am116
2 files changed, 0 insertions, 117 deletions
diff --git a/docs/Makefile.am b/docs/Makefile.am
deleted file mode 100644
index b68c774..0000000
--- a/docs/Makefile.am
+++ /dev/null
@@ -1 +0,0 @@
-SUBDIRS=reference
diff --git a/docs/reference/Makefile.am b/docs/reference/Makefile.am
deleted file mode 100644
index a123a3c..0000000
--- a/docs/reference/Makefile.am
+++ /dev/null
@@ -1,116 +0,0 @@
-## Process this file with automake to produce Makefile.in
-
-# see /gtk-doc/examples/Makefile.am
-
-# We require automake 1.6 at least.
-AUTOMAKE_OPTIONS = 1.6
-
-# The name of the module, e.g. 'glib'.
-DOC_MODULE=libpeas
-
-# The top-level SGML file. You can change this if you want to.
-DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml
-
-# The directory containing the source code. Relative to $(srcdir).
-# gtk-doc will search all .c & .h files beneath here for inline comments
-# documenting the functions and macros.
-DOC_SOURCE_DIR=$(top_srcdir)/libpeas $(top_srcdir)/libpeas-gtk
-
-# Extra options to pass to gtkdoc-scangobj. Not normally needed.
-SCANGOBJ_OPTIONS=
-
-# Extra options to supply to gtkdoc-scan.
-# e.g. SCAN_OPTIONS=--deprecated-guards="GTK_DISABLE_DEPRECATED"
-SCAN_OPTIONS=--deprecated-guards="PEAS_DISABLE_DEPRECATED"
-
-# Extra options to supply to gtkdoc-mkdb.
-MKDB_OPTIONS=--sgml-mode --output-format=xml
-
-# Extra options to supply to gtkdoc-mktmpl
-# e.g. MKTMPL_OPTIONS=--only-section-tmpl
-MKTMPL_OPTIONS=
-
-if ENABLE_DOC_CROSS_REFERENCES
-# Extra options to supply to gtkdoc-fixref. Not normally needed.
-# e.g. FIXXREF_OPTIONS=--extra-dir=../gdk-pixbuf/html --extra-dir=../gdk/html
-FIXXREF_OPTIONS = \
- --extra-dir=$(GLIB_PREFIX)/share/gtk-doc/html/glib \
- --extra-dir=$(GLIB_PREFIX)/share/gtk-doc/html/gmodule \
- --extra-dir=$(GLIB_PREFIX)/share/gtk-doc/html/gobject \
- --extra-dir=$(GLIB_PREFIX)/share/gtk-doc/html/gio \
- --extra-dir=$(GTK_PREFIX)/share/gtk-doc/html/gtk
-endif
-
-# Used for dependencies. The docs will be rebuilt if any of these change.
-HFILE_GLOB = \
- $(top_srcdir)/libpeas/*.h \
- $(top_srcdir)/libpeas-gtk/*.h
-
-CFILE_GLOB = \
- $(top_srcdir)/libpeas/*.c \
- $(top_srcdir)/libpeas-gtk/*.c
-
-# Header files to ignore when scanning (These are internal to libpeas).
-IGNORE_HFILES = \
- peas-debug.h \
- peas-dirs.h \
- peas-engine-priv.h \
- peas-gtk-disable-plugins-dialog.h \
- peas-gtk-plugin-manager-store.h \
- peas-i18n.h \
- peas-introspection.h \
- peas-marshal.h \
- peas-plugin-info-priv.h \
- peas-plugin-loader.h \
- peas-plugin-loader-c.h \
- peas-utils.h
-
-# Images to copy into HTML directory.
-HTML_IMAGES = \
- $(srcdir)/images/peas-gtk-plugin-manager.png
-
-# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE).
-# e.g. content_files=running.sgml building.sgml changes-2.0.sgml
-content_files = \
- version.xml
-
-# SGML files where gtk-doc abbrevations (#GtkWidget) are expanded
-# These files must be listed here *and* in content_files
-# e.g. expand_content_files=running.sgml
-expand_content_files=
-
-# CFLAGS and LDFLAGS for compiling gtkdoc-scangobj with your library.
-# Only needed if you are using gtkdoc-scangobj to dynamically query widget
-# signals and properties.
-GTKDOC_CFLAGS = \
- -I$(top_srcdir) \
- -I$(top_builddir) \
- $(PEAS_CFLAGS) \
- $(PEAS_GTK_CFLAGS)
-
-GTKDOC_LIBS = \
- $(top_builddir)/libpeas/libpeas-1.0.la \
- $(top_builddir)/libpeas-gtk/libpeas-gtk-1.0.la \
- $(PEAS_LIBS) \
- $(PEAS_GTK_LIBS)
-
-# This includes the standard gtk-doc make rules, copied by gtkdocize.
-include $(top_srcdir)/gtk-doc.make
-
-# Other files to distribute
-EXTRA_DIST += \
- version.xml.in
-
-
-if ENABLE_GTK_DOC
-
-TESTS_ENVIRONMENT = \
- SRCDIR=$(abs_srcdir) \
- BUILDDIR=$(abs_builddir) \
- DOC_MODULE=$(DOC_MODULE) \
- DOC_MAIN_SGML_FILE=$(DOC_MAIN_SGML_FILE)
-
-check-local: $(GTKDOC_CHECK)
- @$(TESTS_ENVIRONMENT) ./$(GTKDOC_CHECK)
-
-endif