- Timestamp:
- May 10, 2011, 12:30:50 PM (15 years ago)
- Children:
- 451f17
- Parents:
- f6ff493
- git-author:
- Frederik Heber <heber@…> (05/10/11 11:55:32)
- git-committer:
- Frederik Heber <heber@…> (05/10/11 12:30:50)
- Location:
- doc
- Files:
-
- 1 added
- 1 edited
- 1 moved
-
Doxyfile (moved) (moved from doc/Doxyfile.in ) (4 diffs)
-
Makefile.am (modified) (1 diff, 1 prop)
-
am_doxygen_include.am (added)
Legend:
- Unmodified
- Added
- Removed
-
doc/Doxyfile
rf6ff493 r76379c 26 26 # by quotes) that should identify the project. 27 27 28 PROJECT_NAME = @PACKAGE_NAME@28 PROJECT_NAME = $(PROJECT)-$(VERSION) 29 29 30 30 # The PROJECT_NUMBER tag can be used to enter a project or revision number. … … 32 32 # if some version control system is used. 33 33 34 PROJECT_NUMBER = @PACKAGE_VERSION@34 PROJECT_NUMBER = 35 35 36 36 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) … … 39 39 # where doxygen was started. If left blank the current directory will be used. 40 40 41 OUTPUT_DIRECTORY = @top_builddir@/doc41 OUTPUT_DIRECTORY = $(DOCDIR) 42 42 43 43 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create … … 585 585 # with spaces. 586 586 587 INPUT = @top_srcdir@/src587 INPUT = $(SRCDIR)/../src 588 588 589 589 # This tag can be used to specify the character encoding of the source files -
doc/Makefile.am
-
Property mode
changed from
100755to100644
rf6ff493 r76379c 1 1 2 SRCMANDOCS = 2 include am_doxygen_include.am 3 3 4 GENMANDOCS = 4 EXTRA_DIST = am_doxygen_include.am Doxyfile 5 5 6 dist_man_MANS = $(SRCMANDOCS) $(GENMANDOCS)7 dist_doc_DATA = $(PDFFILES)8 9 SUFFIXES = .pdf .ps .dvi .tex .xml .html10 11 html-local: doxygen-docs12 13 doxygen-docs:14 $(DOXYGEN)15 16 .xml.ps:17 $(XMLTO) $(XMLTOFLAGS) ps $<18 @touch $@19 20 .xml.html:21 $(XMLTO) $(XMLTOFLAGS) html-nochunks $<22 @touch $@23 24 CodePatterns.stamp: CodePatterns.xml25 @rm -f CodePatterns.tmp26 @touch CodePatterns.tmp27 $(XMLTO) $(XMLTOFLAGS) man $<28 @touch $(GENMANDOCS)29 @mv -f CodePatterns.tmp $@30 31 $(GENMANDOCS): CodePatterns.stamp32 @if test -f $@; then touch $@; else \33 rm -f CodePatterns.stamp; \34 $(MAKE) $(AM_MAKEFLAGS) CodePatterns.stamp; \35 fi36 37 clean-local:38 rm -f *.aux *.bbl *.blg *.log *.aux.bak39 distclean-local:40 rm -f *.dvi *.ps *.pdf *.html $(GENMANDOCS) CodePatterns.stamp41 42 .PHONY: allclean doxygen-docs43 allclean: distclean44 45 -
Property mode
changed from
Note:
See TracChangeset
for help on using the changeset viewer.
