| 1 | ## Process this file with automake to produce Makefile.in
|
|---|
| 2 | AUTOMAKE_OPTIONS = 1.6
|
|---|
| 3 |
|
|---|
| 4 | # The name of the module
|
|---|
| 5 | DOC_MODULE=ORBit2
|
|---|
| 6 |
|
|---|
| 7 | # The top-level SGML file.
|
|---|
| 8 | DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml
|
|---|
| 9 |
|
|---|
| 10 | # The directory containing the source code. Relative to $(srcdir).
|
|---|
| 11 | # gtk-doc will search all .c & .h files beneath here for inline comments
|
|---|
| 12 | # documenting functions and macros.
|
|---|
| 13 | DOC_SOURCE_DIR=$(top_srcdir)/src/orb/orb-core
|
|---|
| 14 | EXTRA_HFILES=\
|
|---|
| 15 | $(top_srcdir)/include/orbit/orb-core/allocators.h\
|
|---|
| 16 | $(top_srcdir)/include/orbit/orb-core/orbit-small.h
|
|---|
| 17 |
|
|---|
| 18 | # Extra options to supply to gtkdoc-scan.
|
|---|
| 19 | SCAN_OPTIONS=--deprecated-guards="ORBIT2_DISABLE_DEPRECATED"
|
|---|
| 20 |
|
|---|
| 21 | # Extra options to supply to gtkdoc-mkdb.
|
|---|
| 22 | MKDB_OPTIONS=--sgml-mode --output-format=xml
|
|---|
| 23 |
|
|---|
| 24 | # Extra options to supply to gtkdoc-fixref.
|
|---|
| 25 | FIXXREF_OPTIONS=
|
|---|
| 26 |
|
|---|
| 27 | # Used for dependencies.
|
|---|
| 28 | HFILE_GLOB=
|
|---|
| 29 | CFILE_GLOB=
|
|---|
| 30 |
|
|---|
| 31 | # Header files to ignore when scanning.
|
|---|
| 32 | IGNORE_HFILES= corba-ops.h \
|
|---|
| 33 | iop-profiles.h \
|
|---|
| 34 | orb-core-export.h \
|
|---|
| 35 | orb-core-private.h \
|
|---|
| 36 | orbhttp.h \
|
|---|
| 37 | $orbit-debug.h \
|
|---|
| 38 | orbit-policy.h
|
|---|
| 39 |
|
|---|
| 40 | # Images to copy into HTML directory.
|
|---|
| 41 | HTML_IMAGES =
|
|---|
| 42 |
|
|---|
| 43 | # Extra SGML files that are included by $(DOC_MAIN_SGML_FILE).
|
|---|
| 44 | content_files =
|
|---|
| 45 |
|
|---|
| 46 | # Other files to distribute.
|
|---|
| 47 | extra_files =
|
|---|
| 48 |
|
|---|
| 49 |
|
|---|
| 50 | # CFLAGS and LDFLAGS for compiling scan program. Only needed
|
|---|
| 51 | # if $(DOC_MODULE).types is non-empty.
|
|---|
| 52 | GTKDOC_CFLAGS =
|
|---|
| 53 | GTKDOC_LIBS =
|
|---|
| 54 |
|
|---|
| 55 |
|
|---|
| 56 | # If you need to override some of the declarations, place them in the
|
|---|
| 57 | # $(DOC_MODULE)-overrides.txt file and uncomment the second line here.
|
|---|
| 58 | DOC_OVERRIDES =
|
|---|
| 59 | #DOC_OVERRIDES = $(DOC_MODULE)-overrides.txt
|
|---|
| 60 |
|
|---|
| 61 |
|
|---|
| 62 | # include common portion ...
|
|---|
| 63 | include $(top_srcdir)/gtk-doc.make
|
|---|
| 64 |
|
|---|