Skip to content

Commit df91feb

Browse files
author
cout
committed
Merged autoconf changes r71:151 into the trunk.
git-svn-id: svn+ssh://rubyforge.org/var/svn/rice/trunk@152 e2d4e900-5bc4-4db4-8b5f-7ecdbb188e69
1 parent 161fd51 commit df91feb

37 files changed

+1228
-294
lines changed

Doxyfile

+9-9
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ PROJECT_NAME = Rice
2323
# This could be handy for archiving the generated documentation or
2424
# if some version control system is used.
2525

26-
PROJECT_NUMBER = 0.1
26+
PROJECT_NUMBER = 1.0
2727

2828
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
2929
# base path where the generated documentation will be put.
@@ -678,7 +678,7 @@ HTML_ALIGN_MEMBERS = YES
678678
# Microsoft HTML help workshop to generate a compressed HTML help file (.chm)
679679
# of the generated HTML documentation.
680680

681-
GENERATE_HTMLHELP = NO
681+
# GENERATE_HTMLHELP = NO
682682

683683
# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can
684684
# be used to specify the file name of the resulting .chm file. You
@@ -698,7 +698,7 @@ HHC_LOCATION =
698698
# controls if a separate .chi index file is generated (YES) or that
699699
# it should be included in the master .chm file (NO).
700700

701-
GENERATE_CHI = NO
701+
# GENERATE_CHI = NO
702702

703703
# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag
704704
# controls whether a binary table of contents is generated (YES) or a
@@ -744,7 +744,7 @@ TREEVIEW_WIDTH = 250
744744
# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will
745745
# generate Latex output.
746746

747-
GENERATE_LATEX = YES
747+
# GENERATE_LATEX = YES
748748

749749
# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put.
750750
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
@@ -821,7 +821,7 @@ LATEX_HIDE_INDICES = NO
821821
# The RTF output is optimized for Word 97 and may not look very pretty with
822822
# other RTF readers or editors.
823823

824-
GENERATE_RTF = NO
824+
# GENERATE_RTF = NO
825825

826826
# The RTF_OUTPUT tag is used to specify where the RTF docs will be put.
827827
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
@@ -862,7 +862,7 @@ RTF_EXTENSIONS_FILE =
862862
# If the GENERATE_MAN tag is set to YES (the default) Doxygen will
863863
# generate man pages
864864

865-
GENERATE_MAN = NO
865+
# GENERATE_MAN = NO
866866

867867
# The MAN_OUTPUT tag is used to specify where the man pages will be put.
868868
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
@@ -891,7 +891,7 @@ MAN_LINKS = NO
891891
# generate an XML file that captures the structure of
892892
# the code including all documentation.
893893

894-
GENERATE_XML = NO
894+
# GENERATE_XML = NO
895895

896896
# The XML_OUTPUT tag is used to specify where the XML pages will be put.
897897
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
@@ -1071,7 +1071,7 @@ EXTERNAL_GROUPS = YES
10711071
# The PERL_PATH should be the absolute path and name of the perl script
10721072
# interpreter (i.e. the result of `which perl').
10731073

1074-
PERL_PATH = /usr/bin/perl
1074+
# PERL_PATH = /usr/bin/perl
10751075

10761076
#---------------------------------------------------------------------------
10771077
# Configuration options related to the dot tool
@@ -1097,7 +1097,7 @@ HIDE_UNDOC_RELATIONS = YES
10971097
# toolkit from AT&T and Lucent Bell Labs. The other options in this section
10981098
# have no effect if this option is set to NO (the default)
10991099

1100-
HAVE_DOT = YES
1100+
# HAVE_DOT = YES
11011101

11021102
# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen
11031103
# will generate a graph for each documented class showing the direct and

Makefile

-19
This file was deleted.

Makefile.am

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
AUTOMAKE_OPTIONS = foreign 1.5
2+
SUBDIRS = rice test sample ruby
3+
4+
include doxygen.am
5+
6+
doc: doxygen-doc
7+
8+
noinst_EXTRA = rice/README.doxygen
9+
10+
DX_EXTRA_DEPEND = rice/README.doxygen
11+
12+
EXTRA_DIST = \
13+
README.mingw \
14+
post-autoconf.rb \
15+
post-automake.rb \
16+
bootstrap \
17+
Doxyfile \
18+
ruby.ac \
19+
doxygen.ac \
20+
doxygen.am \
21+
doc
22+
23+
rice/README.doxygen: README
24+
@echo Generating documentation
25+
@$(RUBY) -e 'File.open("README") { |i| File.open("rice/README.doxygen", "w") { |o| o.puts "/*! #{i.gets}"; i.each_line { |l| o.puts " * #{l}" if l !~ /^\\comment/ and l !~ /^vim:/ }; o.puts " */" } }'
26+

0 commit comments

Comments
 (0)