Added a configuration file for a Doxygen documentation.

Run 'make doxygen' in the doc/ directory to generate it.
This commit is contained in:
Olivier Teulière 2005-04-10 13:32:14 +00:00
parent 48d111adca
commit adfc794a73
3 changed files with 1238 additions and 4 deletions

8
doc/.cvsignore Normal file
View file

@ -0,0 +1,8 @@
eliot.tags
doxygen
*.aux
*.dvi
*.log
*.bak
*.eps
*.pdf

1222
doc/Doxyfile Normal file

File diff suppressed because it is too large Load diff

View file

@ -1,9 +1,12 @@
TARGETS=programming.ps programming.pdf
TARGETS = doxygen programming.ps programming.pdf
all: $(TARGETS)
all: $(TARGETS)
doxygen: Doxyfile
doxygen $<
%.pdf: %.ps
ps2pdf $<
ps2pdf $<
%.ps: %.dvi
dvips $< -o
@ -15,7 +18,8 @@ all: $(TARGETS)
fig2dev -L eps $< > $@
clean:
rm -f *.dvi *.ps *.pdf *.aux *.log *.bak *.eps
rm -f *.dvi *.ps *.pdf *.aux *.log *.bak *.eps *.tags
rm -rf doxygen
clean_intermediate_files:
rm -f *.aux *.log *.bak *.eps