~noskcaj/ubuntu/vivid/thunar/1.6.4

« back to all changes in this revision

Viewing changes to docs/reference/thunar-vfs/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Lionel Le Folgoc
  • Date: 2010-12-04 16:46:20 UTC
  • mto: (2.1.3 experimental) (1.3.1)
  • mto: This revision was merged to the branch mainline in revision 69.
  • Revision ID: james.westby@ubuntu.com-20101204164620-h7p4t2e9z6hfhz6l
Tags: upstream-1.1.4
ImportĀ upstreamĀ versionĀ 1.1.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# $Id$
2
 
 
3
 
AUTOMAKE_OPTIONS = 1.8
4
 
 
5
 
# The name of the module.
6
 
DOC_MODULE=thunar-vfs
7
 
 
8
 
# The top-level SGML file.
9
 
DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml
10
 
 
11
 
# Extra options to supply to gtkdoc-scan
12
 
SCAN_OPTIONS=--deprecated-guards="EXO_DISABLE_DEPRECATED"
13
 
 
14
 
# Extra options to pass to gtkdoc-scangobj
15
 
SCANGOBJ_OPTIONS=
16
 
 
17
 
# The directory containing the source code. Relative to $(srcdir)
18
 
DOC_SOURCE_DIR=../../../thunar-vfs
19
 
 
20
 
# Extra options to supply to gtkdoc-mkdb
21
 
MKDB_OPTIONS=--sgml-mode --output-format=xml
22
 
 
23
 
# Extra options to supply to gtkdoc-fixref
24
 
FIXXREF_OPTIONS=
25
 
 
26
 
# Used for dependencies
27
 
HFILE_GLOB=$(top_srcdir)/thunar-vfs/*.h
28
 
CFILE_GLOB=$(top_srcdir)/thunar-vfs/*.c
29
 
 
30
 
# Header files to ignore when scanning
31
 
IGNORE_HFILES=                                                          \
32
 
        thunar-vfs-alias.h                                              \
33
 
        thunar-vfs-marshal.h                                            \
34
 
        thunar-vfs-volume-manager-bsd.h                                 \
35
 
        thunar-vfs-volume-manager-impl.h                                \
36
 
        thunar-vfs-volume-manager-sysv.h
37
 
 
38
 
# Extra files to add when scanning (relative to $srcdir)
39
 
EXTRA_HFILES=
40
 
 
41
 
# Images to copy into HTML directory
42
 
HTML_IMAGES =
43
 
 
44
 
# Extra SGML files that are included by DOC_MAIN_SGML_FILE
45
 
content_files =                                                         \
46
 
        version.xml
47
 
 
48
 
# CFLAGS and LDFLAGS for compiling scan program. Only needed
49
 
# if $(DOC_MODULE).types is non-empty.
50
 
INCLUDES =                                                              \
51
 
        -I$(top_srcdir)                                                 \
52
 
        -I$(top_builddir)                                               \
53
 
        $(EXO_CFLAGS)                                                   \
54
 
        $(GTHREAD_CFLAGS)
55
 
 
56
 
GTKDOC_LIBS =                                                           \
57
 
        $(EXO_LIBS)                                                     \
58
 
        $(GTHREAD_LIBS)                                                 \
59
 
        $(top_builddir)/thunar-vfs/libthunar-vfs-$(THUNAR_VERSION_API).la
60
 
 
61
 
include $(top_srcdir)/gtk-doc.make
62
 
 
63
 
# Other files to distribute
64
 
EXTRA_DIST +=                                                           \
65
 
        version.xml.in
66
 
 
67
 
# required for gtk-doc
68
 
dist-hook: all
69
 
 
70
 
# vi:set ts=8 sw=8 noet ai nocindent syntax=automake: