Skip to content
Snippets Groups Projects
Commit cc06b847 authored by Andreas Traczyk's avatar Andreas Traczyk
Browse files

docs: fix doxygen makefile to sed project name+version+srcdir

Change-Id: If627188657bf3f024ff7604e4de752e6cf9d83e0
parent f7aaf32c
Branches
No related tags found
No related merge requests found
...@@ -41,7 +41,7 @@ maintainer-clean-local: clean-local ...@@ -41,7 +41,7 @@ maintainer-clean-local: clean-local
%.cfg : %.cfg.in %.cfg : %.cfg.in
rm -f $@.tmp rm -f $@.tmp
sed < $< > $@.tmp \ sed < $< > $@.tmp \
-e 's:@-top_srcdir-@:${top_srcdir}:g' -e 's:@-top_srcdir-@:${top_srcdir}/src:g'
sed < $@.tmp > $@.tmp2 \ sed < $@.tmp > $@.tmp2 \
-e 's:@-html_dir-@:${html_parent_dir}/$*:g' -e 's:@-html_dir-@:${html_parent_dir}/$*:g'
rm $@.tmp rm $@.tmp
...@@ -51,6 +51,12 @@ maintainer-clean-local: clean-local ...@@ -51,6 +51,12 @@ maintainer-clean-local: clean-local
sed < $@.tmp3 > $@.tmp4 \ sed < $@.tmp3 > $@.tmp4 \
-e 's:@-html_footer-@:${HTML_FOOTER}:g' -e 's:@-html_footer-@:${HTML_FOOTER}:g'
rm $@.tmp3 rm $@.tmp3
mv $@.tmp4 $@ sed < $@.tmp4 > $@.tmp5 \
-e 's:@PROJECT_NAME@:${PACKAGE_NAME}:g'
rm $@.tmp4
sed < $@.tmp5 > $@.tmp6 \
-e 's:@PACKAGE_VERSION@:${PACKAGE_VERSION}:g'
rm $@.tmp5
mv $@.tmp6 $@
endif # ENABLE_DOXYGEN endif # ENABLE_DOXYGEN
...@@ -771,7 +771,7 @@ WARN_LOGFILE = ...@@ -771,7 +771,7 @@ WARN_LOGFILE =
# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING # spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
# Note: If this tag is empty the current directory is searched. # Note: If this tag is empty the current directory is searched.
INPUT = @top_srcdir@ INPUT = @-top_srcdir-@
# This tag can be used to specify the character encoding of the source files # This tag can be used to specify the character encoding of the source files
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment