~ubuntu-branches/ubuntu/trusty/gtk-doc/trusty-proposed

« back to all changes in this revision

Viewing changes to tests/empty/docs/Makefile.am

  • Committer: Martin Pitt
  • Date: 2011-01-27 14:41:59 UTC
  • mfrom: (1.2.12 upstream)
  • Revision ID: martin.pitt@canonical.com-20110127144159-wagev8l04yc5b8jc
New upstream release with lots of bug fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
## Process this file with automake to produce Makefile.in
2
2
 
 
3
# this tests bootstraps gtk-doc, that includes generating a default 
 
4
# DOC_MAIN_SGML_FILE
 
5
# right now that fails with parallel make, as make cannot see that what is a
 
6
# dependency for another target is generated as needed
 
7
MAKEFLAGS = -j1
 
8
 
3
9
# We require automake 1.6 at least.
4
10
AUTOMAKE_OPTIONS = 1.6
5
11
 
23
29
  2>&1 | tee gtkdoc-scan.log
24
30
 
25
31
# Extra options to supply to gtkdoc-mkdb.
26
 
MKDB_OPTIONS=--sgml-mode 2>&1 | tee gtkdoc-mkdb.log
 
32
MKDB_OPTIONS=--xml-mode 2>&1 | tee gtkdoc-mkdb.log
27
33
 
28
34
# Extra options to supply to gtkdoc-mktmpl
29
35
# e.g. MKTMPL_OPTIONS=--only-section-tmpl
78
84
 
79
85
if BUILD_TESTS
80
86
TESTS_ENVIRONMENT = \
 
87
        DOC_MODULE=$(DOC_MODULE) DOC_MAIN_SGML_FILE=$(DOC_MAIN_SGML_FILE) \
81
88
        PATH=$(abs_top_builddir):$(srcdir):$(PATH) \
82
89
        PERL5LIB=$(abs_top_builddir):$(PERL5LIB)
83
90
endif