~ubuntu-branches/ubuntu/precise/grass/precise

« back to all changes in this revision

Viewing changes to include/Make/Doxygen.make

  • Committer: Bazaar Package Importer
  • Author(s): Francesco Paolo Lovergine
  • Date: 2011-04-13 17:08:41 UTC
  • mfrom: (8.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20110413170841-ss1t9bic0d0uq0gz
Tags: 6.4.1-1
* New upstream version.
* Now build-dep on libjpeg-dev and current libreadline6-dev.
* Removed patch swig: obsolete.
* Policy bumped to 3.9.2, without changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
        @(type doxygen > /dev/null || (echo "ERROR: Install 'doxygen' software first (get from http://www.doxygen.org)" && exit 1))
10
10
 
11
11
# generate docs as single HTML document:
12
 
htmldocs-single: checkdoxygen cleandocs
 
12
htmldox-single: checkdoxygen cleandox
13
13
        doxygen $(MODULE_TOPDIR)/include/Make/Doxyfile_arch_html
14
14
        @echo "HTML reference in directory ./html/index.html"
15
15
 
16
16
# generate docs as multiple HTML documents:
17
 
htmldocs: checkdoxygen cleandocs
 
17
htmldox: checkdoxygen cleandox
18
18
# hack needed to get main page at beginning:
19
19
        @mv $(DOXINPUT) $(DOXINPUT).org
20
20
        @sed 's+/\*! \\page +/\*! \\mainpage +g' $(DOXINPUT).org > $(DOXINPUT)
23
23
        @echo "HTML reference in directory ./html/index.html"
24
24
 
25
25
# NOTE: stubs/ and sqlp/ are excluded in ./Doxyfile_arch_latex
26
 
latexdocs: checkdoxygen cleandocs
 
26
latexdox: checkdoxygen cleandox
27
27
        test ! -d latex || (cd ./latex && $(MAKE) clean)
28
28
# hack needed to get main page at beginning:
29
29
        @mv $(DOXINPUT) $(DOXINPUT).org
35
35
        @mv $(DOXINPUT).org $(DOXINPUT)
36
36
        @echo "Latex reference in directory ./latex/refman.dvi"
37
37
 
38
 
pdfdocs: checkdoxygen cleandocs
 
38
pdfdox: checkdoxygen cleandox
39
39
        test ! -d latex || (cd ./latex && $(MAKE) clean)
40
40
# hack needed to get main page at beginning:
41
41
        @mv $(DOXINPUT) $(DOXINPUT).org
47
47
        @mv $(DOXINPUT).org $(DOXINPUT)
48
48
        @echo "PDF reference in directory ./latex/grass${GRASS_VERSION_MAJOR}${GRASS_VERSION_MINOR}$(DOXOUTPUT)_`date '+%Y_%m_%d'`_refman.pdf"
49
49
 
50
 
cleandocs:
 
50
cleandox:
51
51
        rm -rf ./latex ./html