Improve TUI documentation building.

This commit is contained in:
jfa 2007-06-21 09:18:57 +00:00
parent a77ff78d17
commit a4a91a704e
2 changed files with 5 additions and 6 deletions

View File

@ -77,8 +77,7 @@ WARN_LOGFILE = log.txt
# configuration options related to the input files # configuration options related to the input files
#--------------------------------------------------------------------------- #---------------------------------------------------------------------------
INPUT = ../../../share/salome/src \ INPUT = ../../../share/salome/src \
../../../share/salome/idl \ ../../../share/salome/idl
../../../build/salome/bin
FILE_PATTERNS = *.hxx *.cxx *.h *.c *.hh *.cc *.idl python_extension_must_be_here FILE_PATTERNS = *.hxx *.cxx *.h *.c *.hh *.cc *.idl python_extension_must_be_here
RECURSIVE = YES RECURSIVE = YES
EXCLUDE = EXCLUDE =

View File

@ -28,14 +28,14 @@ dev_docs:
cp -fr $(srcdir)/GEOM ./INPUT; \ cp -fr $(srcdir)/GEOM ./INPUT; \
cp -f ./GEOM/doxyfile ./INPUT; \ cp -f ./GEOM/doxyfile ./INPUT; \
cd INPUT; \ cd INPUT; \
sed 's|../../../share/salome|$(root_srcdir)|' ./doxyfile > ./doxyfile1; \ sed 's|../../../share/salome|$(top_srcdir)|' ./doxyfile > ./doxyfile1; \
sed 's|../../build/salome|$(top_builddir)|' ./doxyfile1 > ./doxyfile2; \ sed 's|../../build/salome|$(top_builddir)|' ./doxyfile1 > ./doxyfile2; \
mv -f doxyfile2 doxyfile1; \ mv -f doxyfile2 doxyfile1; \
echo "DOXYGEN SUPPORT PYTHON - @DOXYGEN_WITH_PYTHON@"; \ echo "DOXYGEN SUPPORT PYTHON - @DOXYGEN_WITH_PYTHON@"; \
if( test "x@DOXYGEN_WITH_PYTHON@" = "xyes"); then \ if( test "x@DOXYGEN_WITH_PYTHON@" = "xyes"); then \
sed 's|python_extension_must_be_here|*.py|' ./doxyfile1 > ./doxyfile2; \ sed 's|python_extension_must_be_here|*.py|' ./doxyfile1 > ./doxyfile2; \
mv -f doxyfile2 doxyfile1; \ mv -f doxyfile2 doxyfile1; \
$(doxygen) -u ./doxyfile1; \ $(DOXYGEN) -u ./doxyfile1; \
else \ else \
sed 's|python_extension_must_be_here||' ./doxyfile1 > ./doxyfile2; \ sed 's|python_extension_must_be_here||' ./doxyfile1 > ./doxyfile2; \
mv -f doxyfile2 doxyfile1; \ mv -f doxyfile2 doxyfile1; \
@ -46,9 +46,9 @@ dev_docs:
fi; \ fi; \
mv -f doxyfile1 doxyfile; \ mv -f doxyfile1 doxyfile; \
echo "Running doxygen in directory:"`pwd`; \ echo "Running doxygen in directory:"`pwd`; \
$(doxygen) ./doxyfile; \ $(DOXYGEN) ./doxyfile; \
cd ../; \ cd ../; \
cp -fr $(srcdir)/GEOM/sources/ GEOM ; \ cp -fr $(srcdir)/GEOM/sources/ GEOM/ ; \
rm -fr INPUT rm -fr INPUT
doctuidir=$(docdir)/tui/GEOM doctuidir=$(docdir)/tui/GEOM