mirror of
git://git.savannah.nongnu.org/eliot.git
synced 2025-01-30 20:34:27 +01:00
Added a configuration file for a Doxygen documentation.
Run 'make doxygen' in the doc/ directory to generate it.
This commit is contained in:
parent
48d111adca
commit
adfc794a73
3 changed files with 1238 additions and 4 deletions
8
doc/.cvsignore
Normal file
8
doc/.cvsignore
Normal file
|
@ -0,0 +1,8 @@
|
|||
eliot.tags
|
||||
doxygen
|
||||
*.aux
|
||||
*.dvi
|
||||
*.log
|
||||
*.bak
|
||||
*.eps
|
||||
*.pdf
|
1222
doc/Doxyfile
Normal file
1222
doc/Doxyfile
Normal file
File diff suppressed because it is too large
Load diff
12
doc/Makefile
12
doc/Makefile
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue