Changeset 268 for libcaca/trunk/doc
- Timestamp:
- Dec 23, 2003, 2:27:40 PM (19 years ago)
- Location:
- libcaca/trunk/doc
- Files:
-
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/doc/Makefile.am
r215 r268 1 EXTRA_DIST = doxygen.cfg footer.html header.html $(man_MANS)1 EXTRA_DIST = doxygen.cfg.in footer.html header.html $(man_MANS) 2 2 3 3 man_MANS = caca-config.1 cacademo.1 caca-spritedit.1 cacaview.1 … … 21 21 clean: clean-local 22 22 clean-local: 23 -rm -Rf html latex 23 -rm -Rf html latex man 24 24 -rm -f stamp-latex stamp-doxygen 25 25 -
libcaca/trunk/doc/doxygen.cfg.in
r267 r268 4 4 # Project related configuration options 5 5 #--------------------------------------------------------------------------- 6 PROJECT_NAME = libcaca7 PROJECT_NUMBER = 0.36 PROJECT_NAME = @PACKAGE@ 7 PROJECT_NUMBER = @VERSION@ 8 8 OUTPUT_DIRECTORY = . 9 9 OUTPUT_LANGUAGE = English … … 62 62 # configuration options related to the input files 63 63 #--------------------------------------------------------------------------- 64 INPUT = ../src64 INPUT = @top_srcdir@/src 65 65 FILE_PATTERNS = *.c \ 66 66 *.h … … 96 96 HTML_OUTPUT = html 97 97 HTML_FILE_EXTENSION = .html 98 HTML_HEADER = header.html99 HTML_FOOTER = footer.html98 HTML_HEADER = @srcdir@/header.html 99 HTML_FOOTER = @srcdir@/footer.html 100 100 HTML_STYLESHEET = 101 101 HTML_ALIGN_MEMBERS = YES … … 140 140 MAN_OUTPUT = man 141 141 MAN_EXTENSION = .3caca 142 MAN_LINKS = NO142 MAN_LINKS = YES 143 143 #--------------------------------------------------------------------------- 144 144 # configuration options related to the XML output
Note: See TracChangeset
for help on using the changeset viewer.