* doc/Makefile.am: Rewrite to run Doxygen whenever Doxyfile.in
or configure.ac changes. Distribute the html doc. * doc/Doxyfile.in (EXCLUDE_PATTERNS): Complete with useless Bison classes. (FILE_PATTERNS): Remove *.cc files.
This commit is contained in:
parent
510756cdb7
commit
5d26d6f01e
3 changed files with 30 additions and 12 deletions
10
ChangeLog
10
ChangeLog
|
|
@ -1,8 +1,14 @@
|
||||||
2003-06-26 Alexandre Duret-Lutz <aduret@src.lip6.fr>
|
2003-06-26 Alexandre Duret-Lutz <aduret@src.lip6.fr>
|
||||||
|
|
||||||
|
* doc/Makefile.am: Rewrite to run Doxygen whenever Doxyfile.in
|
||||||
|
or configure.ac changes. Distribute the html doc.
|
||||||
|
* doc/Doxyfile.in (EXCLUDE_PATTERNS): Complete with
|
||||||
|
useless Bison classes.
|
||||||
|
(FILE_PATTERNS): Remove *.cc files.
|
||||||
|
|
||||||
Distribute BuDDy. Compile and link with the included version if
|
Distribute BuDDy. Compile and link with the included version if
|
||||||
explicitely requested (--with-included-buddy) or if there is
|
explicitely requested (--with-included-buddy) or if there is now
|
||||||
now stuitable version already installed.
|
stuitable version already installed.
|
||||||
|
|
||||||
* buddy/: New directory. Contains a patched version of BuDDy 2.2.
|
* buddy/: New directory. Contains a patched version of BuDDy 2.2.
|
||||||
* m4/buddy.m4: Make sure the installed BuDDy supports bdd_mergepairs.
|
* m4/buddy.m4: Make sure the installed BuDDy supports bdd_mergepairs.
|
||||||
|
|
|
||||||
|
|
@ -58,13 +58,16 @@ WARN_LOGFILE =
|
||||||
# configuration options related to the input files
|
# configuration options related to the input files
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
INPUT = @top_srcdir@/src
|
INPUT = @top_srcdir@/src
|
||||||
FILE_PATTERNS = *.cc \
|
FILE_PATTERNS = *.hh \
|
||||||
*.hh \
|
|
||||||
*.hxx
|
*.hxx
|
||||||
RECURSIVE = YES
|
RECURSIVE = YES
|
||||||
EXCLUDE =
|
EXCLUDE =
|
||||||
EXCLUDE_SYMLINKS = NO
|
EXCLUDE_SYMLINKS = NO
|
||||||
EXCLUDE_PATTERNS = *test/*
|
EXCLUDE_PATTERNS = */tgbaparse/location.hh \
|
||||||
|
*/tgbaparse/stack.hh \
|
||||||
|
*/tgbaparse/position.hh \
|
||||||
|
*/*parse/*parse*.hh \
|
||||||
|
*test/*
|
||||||
EXAMPLE_PATH =
|
EXAMPLE_PATH =
|
||||||
EXAMPLE_PATTERNS =
|
EXAMPLE_PATTERNS =
|
||||||
EXAMPLE_RECURSIVE = NO
|
EXAMPLE_RECURSIVE = NO
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,20 @@
|
||||||
DOXYGEN = doxygen
|
DOXYGEN = doxygen
|
||||||
|
|
||||||
.PHONY: doc html
|
.PHONY: doc spot
|
||||||
|
|
||||||
doc: spot
|
all-local: stamp
|
||||||
|
|
||||||
spot: Doxyfile
|
doc:
|
||||||
$(DOXYGEN)
|
rm stamp
|
||||||
|
$(AMKE) stamp
|
||||||
|
|
||||||
clean-local:
|
stamp: Doxyfile.in ../configure.ac
|
||||||
|
$(MAKE) Doxyfile
|
||||||
rm -rf spot.html spot.latex
|
rm -rf spot.html spot.latex
|
||||||
|
$(DOXYGEN)
|
||||||
|
: > $@
|
||||||
|
|
||||||
|
spot.html: stamp
|
||||||
|
spot.latex: stamp
|
||||||
|
|
||||||
|
EXTRA_DIST = stamp spot.html
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue