~ubuntu-desktop/dee/ubuntu

« back to all changes in this revision

Viewing changes to doc/reference/dee-1.0/Makefile.am

  • Committer: Didier Roche
  • Date: 2012-01-12 16:14:54 UTC
  • mfrom: (130.1.206 MASTER)
  • mto: (250.1.1 ubuntu)
  • mto: This revision was merged to the branch mainline in revision 218.
  • Revision ID: didier.roche@canonical.com-20120112161454-31xl6hgcfngm6abi
Tags: upstream-1.0.0
ImportĀ upstreamĀ versionĀ 1.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
# gtk-doc will search all .c & .h files beneath here for inline comments
16
16
# documenting the functions and macros.
17
17
# e.g. DOC_SOURCE_DIR=../../../gtk
18
 
DOC_SOURCE_DIR=../../../dee
 
18
DOC_SOURCE_DIR=$(top_srcdir)/src
19
19
 
20
20
# Extra options to pass to gtkdoc-scangobj. Not normally needed.
21
21
SCANGOBJ_OPTIONS=
42
42
# Used for dependencies. The docs will be rebuilt if any of these change.
43
43
# e.g. HFILE_GLOB=$(top_srcdir)/gtk/*.h
44
44
# e.g. CFILE_GLOB=$(top_srcdir)/gtk/*.c
45
 
HFILE_GLOB=$(top_srcdir)/dee/*.h
46
 
CFILE_GLOB=$(top_srcdir)/dee/*.c
 
45
HFILE_GLOB=$(top_srcdir)/src/*.h
 
46
CFILE_GLOB=$(top_srcdir)/src/*.c
47
47
 
48
48
# Header files to ignore when scanning.
49
49
# e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h
68
68
# e.g. GTKDOC_CFLAGS=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS)
69
69
# e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib)
70
70
#GTKDOC_CFLAGS=-I$(top_srcdir) -I$(top_builddir) $(DEE_CFLAGS)
71
 
INCLUDES=-I$(top_srcdir)/dee -I$(top_builddir)/dee $(DEE_CFLAGS)
72
 
GTKDOC_LIBS=$(top_builddir)/dee/libdee-1.0.la $(DEE_LIBS)
 
71
INCLUDES = \
 
72
        $(DEE_CFLAGS) \
 
73
        -I$(top_srcdir)/src
 
74
 
 
75
GTKDOC_LIBS = \
 
76
        $(DEE_LIBS) \
 
77
        $(top_builddir)/src/libdee-1.0.la
73
78
 
74
79
# This includes the standard gtk-doc make rules, copied by gtkdocize.
75
80
include $(top_srcdir)/gtk-doc.make