1## Process this file with automake to produce Makefile.in
2
3AUTOMAKE_OPTIONS = 1.6
4
5# The name of the module, e.g. 'glib'.
6DOC_MODULE=mate-panel-applet
7
8# The top-level SGML file. Change it if you want.
9DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml
10
11# The directory containing the source code. Relative to $(srcdir).
12# gtk-doc will search all .c & .h files beneath here for inline comments
13# documenting functions and macros.
14DOC_SOURCE_DIR=../../../libmate-panel-applet
15
16# Extra options to supply to gtkdoc-scan.
17SCAN_OPTIONS=
18
19# Extra options to supply to gtkdoc-mkdb.
20MKDB_OPTIONS=--output-format=xml
21
22# Extra options to supply to gtkdoc-fixref.
23FIXXREF_OPTIONS=
24
25# Used for dependencies.
26HFILE_GLOB=$(top_srcdir)/libmate-panel-applet/*.h
27CFILE_GLOB=$(top_srcdir)/libmate-panel-applet/*.c
28
29# Header files to ignore when scanning.
30IGNORE_HFILES =					\
31	MATE_Panel.h				\
32	mate-panel-applet-enums.h			\
33	mate-panel-applet-marshal.h			\
34	mate-panel-applet-private.h			\
35	mate-panel-applet-shell.h
36
37# Images to copy into HTML directory.
38HTML_IMAGES =
39
40# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE).
41content_files =
42
43# Other files to distribute.
44extra_files =
45
46# CFLAGS and LDFLAGS for compiling scan program. Only needed if your app/lib
47# contains GtkObjects/GObjects and you want to document signals and properties.
48GTKDOC_CFLAGS =					\
49	$(CFLAGS)				\
50	$(CPPFLAGS)				\
51	$(PANEL_CFLAGS)				\
52	-I$(srcdir)/../../../libmate-panel-applet    \
53	-I$(top_builddir)/libmate-panel-applet
54
55GTKDOC_LIBS =						\
56	$(LDFLAGS)					\
57	$(PANEL_LIBS)					\
58	../../../libmate-panel-applet/libmate-panel-applet-4.la
59
60include $(top_srcdir)/gtk-doc.make
61
62DISTCLEANFILES = $(DOC_MODULE).actions
63
64dist-hook-local:
65#	mkdir $(distdir)/TEXT;          \
66#	for f in $(srcdir)/TEXT/* ; do  \
67#	  test -f $$f && cp -p $$f $(distdir)/TEXT; \
68#	done
69
70-include $(top_srcdir)/git.mk
71