/docs/reference/Makefile.am

http://ftk.googlecode.com/ · Makefile · 102 lines · 24 code · 25 blank · 53 comment · 1 complexity · 6cda00a2b2497c99c82d47788bad3660 MD5 · raw file

  1. ## Process this file with automake to produce Makefile.in
  2. # We require automake 1.6 at least.
  3. AUTOMAKE_OPTIONS = 1.6
  4. # This is a blank Makefile.am for using gtk-doc.
  5. # Copy this to your project's API docs directory and modify the variables to
  6. # suit your project. See the GTK+ Makefiles in gtk+/docs/reference for examples
  7. # of using the various options.
  8. # The name of the module, e.g. 'glib'.
  9. DOC_MODULE=ftk
  10. # Uncomment for versioned docs and specify the version of the module, e.g. '2'.
  11. #DOC_MODULE_VERSION=2
  12. # The top-level SGML file. You can change this if you want to.
  13. DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml
  14. # Directories containing the source code, relative to $(srcdir).
  15. # gtk-doc will search all .c and .h files beneath these paths
  16. # for inline comments documenting functions and macros.
  17. # e.g. DOC_SOURCE_DIR=../../../gtk ../../../gdk
  18. DOC_SOURCE_DIR=$(top_srcdir)/src
  19. # Extra options to pass to gtkdoc-scangobj. Not normally needed.
  20. SCANGOBJ_OPTIONS=
  21. # Extra options to supply to gtkdoc-scan.
  22. # e.g. SCAN_OPTIONS=--deprecated-guards="GTK_DISABLE_DEPRECATED"
  23. SCAN_OPTIONS=
  24. # Extra options to supply to gtkdoc-mkdb.
  25. # e.g. MKDB_OPTIONS=--sgml-mode --output-format=xml
  26. MKDB_OPTIONS=--sgml-mode --output-format=xml
  27. # Extra options to supply to gtkdoc-mktmpl
  28. # e.g. MKTMPL_OPTIONS=--only-section-tmpl
  29. MKTMPL_OPTIONS=
  30. # Extra options to supply to gtkdoc-mkhtml
  31. MKHTML_OPTIONS=
  32. # Extra options to supply to gtkdoc-fixref. Not normally needed.
  33. # e.g. FIXXREF_OPTIONS=--extra-dir=../gdk-pixbuf/html --extra-dir=../gdk/html
  34. FIXXREF_OPTIONS=
  35. # Used for dependencies. The docs will be rebuilt if any of these change.
  36. # e.g. HFILE_GLOB=$(top_srcdir)/gtk/*.h
  37. # e.g. CFILE_GLOB=$(top_srcdir)/gtk/*.c
  38. HFILE_GLOB=
  39. CFILE_GLOB=
  40. # Extra header to include when scanning, which are not under DOC_SOURCE_DIR
  41. # e.g. EXTRA_HFILES=$(top_srcdir}/contrib/extra.h
  42. EXTRA_HFILES=
  43. # Header files to ignore when scanning. Use base file name, no paths
  44. # e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h
  45. IGNORE_HFILES=
  46. # Images to copy into HTML directory.
  47. # e.g. HTML_IMAGES=$(top_srcdir)/gtk/stock-icons/stock_about_24.png
  48. HTML_IMAGES=
  49. # Extra SGML files that are included by $(DOC_MAIN_SGML_FILE).
  50. # e.g. content_files=running.sgml building.sgml changes-2.0.sgml
  51. content_files=
  52. # SGML files where gtk-doc abbrevations (#GtkWidget) are expanded
  53. # These files must be listed here *and* in content_files
  54. # e.g. expand_content_files=running.sgml
  55. expand_content_files=
  56. # CFLAGS and LDFLAGS for compiling gtkdoc-scangobj with your library.
  57. # Only needed if you are using gtkdoc-scangobj to dynamically query widget
  58. # signals and properties.
  59. # e.g. GTKDOC_CFLAGS=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS)
  60. # e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib)
  61. GTKDOC_CFLAGS=
  62. GTKDOC_LIBS=
  63. # This includes the standard gtk-doc make rules, copied by gtkdocize.
  64. include $(top_srcdir)/gtk-doc.make
  65. # Other files to distribute
  66. # e.g. EXTRA_DIST += version.xml.in
  67. EXTRA_DIST +=
  68. # Files not to distribute
  69. # for --rebuild-types in $(SCAN_OPTIONS), e.g. $(DOC_MODULE).types
  70. # for --rebuild-sections in $(SCAN_OPTIONS) e.g. $(DOC_MODULE)-sections.txt
  71. #DISTCLEANFILES +=
  72. # Comment this out if you want your docs-status tested during 'make check'
  73. if ENABLE_GTK_DOC
  74. #TESTS_ENVIRONMENT = cd $(srcsrc) &&
  75. #TESTS = $(GTKDOC_CHECK)
  76. endif
  77. -include $(top_srcdir)/git.mk