diff options
author | Tomeu Vizoso <tomeu.vizoso@collabora.com> | 2013-02-15 19:43:25 +0100 |
---|---|---|
committer | Jasper St. Pierre <jstpierre@mecheye.net> | 2013-03-14 18:02:43 -0400 |
commit | 2863eba2e7491afb9f98999488fb0590d291fc52 (patch) | |
tree | f68699b6b8c3500755666b6ead32c2abd3dce2e6 /doc | |
parent | e0b698d3651e502cded044d7fca6739e1a22efc8 (diff) | |
download | mutter-2863eba2e7491afb9f98999488fb0590d291fc52.tar.gz |
Ignore private headers when generating API docs
https://bugzilla.gnome.org/show_bug.cgi?id=676856
Diffstat (limited to 'doc')
-rw-r--r-- | doc/reference/Makefile.am | 55 |
1 files changed, 54 insertions, 1 deletions
diff --git a/doc/reference/Makefile.am b/doc/reference/Makefile.am index 36459f827..7e7199660 100644 --- a/doc/reference/Makefile.am +++ b/doc/reference/Makefile.am @@ -58,7 +58,60 @@ EXTRA_HFILES= # Header files or dirs to ignore when scanning. Use base file/dir names # e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h private_code -IGNORE_HFILES= +IGNORE_HFILES= \ + async-getprop.h \ + atoms.h \ + bell.h \ + boxes-private.h \ + clutter-utils.h \ + cogl-utils.h \ + compositor-private.h \ + constraints.h \ + core.h \ + display-private.h \ + draw-workspace.h \ + edge-resistance.h \ + eventqueue.h \ + frame.h \ + frames.h \ + group-private.h \ + group-props.h \ + iconcache.h \ + inlinepixbufs.h \ + keybindings-private.h \ + menu.h \ + metaaccellabel.h \ + meta-background-actor-private.h \ + meta-background-group-private.h \ + meta-module.h \ + meta-plugin-manager.h \ + meta-shadow-factory-private.h \ + meta-texture-rectangle.h \ + meta-texture-tower.h \ + meta-window-actor-private.h \ + meta-window-group.h \ + meta-window-shape.h \ + mutter-enum-types.h \ + mutter-Xatomtype.h \ + place.h \ + region-utils.h \ + resizepopup.h \ + screen-private.h \ + session.h \ + stack.h \ + stack-tracker.h \ + stamp-mutter-enum-types.h \ + tabpopup.h \ + theme-private.h \ + tile-preview.h \ + ui.h \ + window-private.h \ + window-props.h \ + workspace-private.h \ + xprops.h \ + $(NULL) + +MKDB_OPTIONS+=--ignore-files="$(IGNORE_HFILES)" # Images to copy into HTML directory. # e.g. HTML_IMAGES=$(top_srcdir)/gtk/stock-icons/stock_about_24.png |