This is the mail archive of the
automake@gnu.org
mailing list for the automake project.
Automake 1.5: Documentation generation
- To: Automake mailing list <automake at gnu dot org>
- Subject: Automake 1.5: Documentation generation
- From: Sebastian Huber <sebastian-huber at web dot de>
- Date: Tue, 25 Sep 2001 14:00:05 +0200
- List-Id: Discussion list for automake <automake.gnu.org>
Hello,
I used to generate my Doxygen documentation generation this way (Makefile.am):
EXTRA_DIST = @PACKAGE@.doxygen.in
CLEANFILES = *.html *.gif *.css
noinst_PROGRAMS = index.html
index_html_SOURCES = @PACKAGE@.doxygen
index.html: @PACKAGE@.doxygen
doxygen @PACKAGE@.doxygen
But with the update from 1.4.p5 to 1.5 I am confronted with this error
message:
doc/Makefile.am:9: deprecated feature: `index.html' overrides
`index.html$(EXEEXT)'
doc/Makefile.am:9: change your target to read `index.html$(EXEEXT)'
Does anyone know a better way to generate such documentation?
Thanks in advance
Sebastian