1 | ## Process this file with automake to produce Makefile.in |
---|
2 | |
---|
3 | # The name of the module, e.g. 'glib'. |
---|
4 | DOC_MODULE=libgnomeprintui |
---|
5 | |
---|
6 | # The top-level SGML file. Change it if you want. |
---|
7 | DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml |
---|
8 | |
---|
9 | # The directory containing the source code. Relative to $(srcdir). |
---|
10 | # gtk-doc will search all .c & .h files beneath here for inline comments |
---|
11 | # documenting functions and macros. |
---|
12 | DOC_SOURCE_DIR=$(top_srcdir)/libgnomeprintui |
---|
13 | |
---|
14 | # Extra options to supply to gtkdoc-scan. |
---|
15 | SCAN_OPTIONS=--deprecated-guards="GNOME_DISABLE_DEPRECATED" |
---|
16 | |
---|
17 | # Extra options to supply to gtkdoc-mkdb. |
---|
18 | MKDB_OPTIONS= |
---|
19 | |
---|
20 | # Extra options to supply to gtkdoc-fixref. |
---|
21 | FIXXREF_OPTIONS= |
---|
22 | |
---|
23 | # Used for dependencies. |
---|
24 | HFILE_GLOB=$(top_srcdir)/libgnomeprintui/*.h $(top_srcdir)/libgnomeprintui/*/*.h |
---|
25 | CFILE_GLOB=$(top_srcdir)/libgnomeprintui/*.c $(top_srcdir)/libgnomeprintui/*/*.c |
---|
26 | |
---|
27 | # Header files to ignore when scanning. |
---|
28 | IGNORE_HFILES= \ |
---|
29 | gnome-canvas-hacktext.h \ |
---|
30 | gnome-print-i18n.h \ |
---|
31 | gnome-print-pixbuf.h \ |
---|
32 | gnome-print-preview-icons.h \ |
---|
33 | gnome-print-preview-private.h \ |
---|
34 | add-printer-dialog.h \ |
---|
35 | config-dialog.h \ |
---|
36 | gpa-widget.h \ |
---|
37 | media-orientation.h \ |
---|
38 | printer-selector.h \ |
---|
39 | settings-selector.h \ |
---|
40 | transport-selector.h |
---|
41 | |
---|
42 | # Images to copy into HTML directory. |
---|
43 | HTML_IMAGES = |
---|
44 | |
---|
45 | # Extra SGML files that are included by $(DOC_MAIN_SGML_FILE). |
---|
46 | content_files = |
---|
47 | |
---|
48 | # Other files to distribute. |
---|
49 | extra_files = |
---|
50 | |
---|
51 | # CFLAGS and LDFLAGS for compiling scan program. Only needed if your app/lib |
---|
52 | # contains GtkObjects/GObjects and you want to document signals and properties. |
---|
53 | GTKDOC_CFLAGS = -DWE_ARE_LIBGNOMEPRINT_INTERNALS -I$(top_builddir) -I$(top_srcdir) $(LIBGNOMEPRINTUI_CFLAGS) $(CFLAGS) |
---|
54 | GTKDOC_LIBS = $(top_builddir)/libgnomeprintui/libgnomeprintui-2-2.la $(LDFLAGS) |
---|
55 | |
---|
56 | # _CC and _LD are already defined in gtk-doc.make |
---|
57 | # GTKDOC_CC=$(LIBTOOL) --mode=compile $(CC) |
---|
58 | # GTKDOC_LD=$(LIBTOOL) --mode=link $(CC) |
---|
59 | |
---|
60 | # If you need to override some of the declarations, place them in this file |
---|
61 | # and uncomment this line. |
---|
62 | #DOC_OVERRIDES = $(DOC_MODULE)-overrides.txt |
---|
63 | DOC_OVERRIDES = |
---|
64 | |
---|
65 | include $(top_srcdir)/gtk-doc.make |
---|