~ubuntu-branches/ubuntu/vivid/librest/vivid-proposed

« back to all changes in this revision

Viewing changes to docs/reference/rest/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Ying-Chun Liu (PaulLiu)
  • Date: 2009-10-21 17:16:22 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20091021171622-1yhw1c2owwught3f
Tags: 0.6.1-1
* New upstream release
* debian/conrtol: Split librest and librest-extras
* debian/rules: Use autoreconf to re-generate the configure
* debian/rules: Add proper clean rule to remove non-source files
* debian/watch: Add git repo releases
* debian/copyright: Update copyright file to newer spec
* debian/control: Bump standard version to 3.8.3. Nothing changed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
 
11
11
# The name of the module, e.g. 'glib'.
12
12
DOC_MODULE=rest
 
13
DOC_MODULE_VERSION=@API_VERSION@
13
14
 
14
15
# The top-level SGML file. You can change this if you want to.
15
16
DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml
45
46
# Used for dependencies. The docs will be rebuilt if any of these change.
46
47
# e.g. HFILE_GLOB=$(top_srcdir)/gtk/*.h
47
48
# e.g. CFILE_GLOB=$(top_srcdir)/gtk/*.c
48
 
HFILE_GLOB=$(top_srcdir)/rest/*.h
49
 
CFILE_GLOB=$(top_srcdir)/rest/*.c
 
49
HFILE_GLOB=$(top_srcdir)/rest/*.h $(top_srcdir)/rest-extras/*.h
 
50
CFILE_GLOB=$(top_srcdir)/rest/*.c $(top_srcdir)/rest-extras/*.c
50
51
 
51
52
# Header files to ignore when scanning.
52
53
# e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h
71
72
# e.g. INCLUDES=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS)
72
73
# e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib)
73
74
INCLUDES=-I$(top_srcdir) -I$(top_builddir) $(GLIB_CFLAGS) $(SOUP_CFLAGS) $(XML_CFLAGS)
74
 
GTKDOC_LIBS=$(top_builddir)/rest/librest.la
 
75
GTKDOC_LIBS=$(top_builddir)/rest/librest-@API_VERSION@.la $(top_builddir)/rest-extras/librest-extras-@API_VERSION@.la
75
76
 
76
77
# This includes the standard gtk-doc make rules, copied by gtkdocize.
77
78
include $(top_srcdir)/gtk-doc.make