Added support for doxygen1.4.4 and higher (with PYTHON documenation support)

This commit is contained in:
enk 2006-03-30 12:27:54 +00:00
parent edca8dcdc4
commit ae999b751c
3 changed files with 39 additions and 18 deletions

View File

@ -171,6 +171,8 @@ CXXFLAGS+= $(CORBA_CXXFLAGS)
LIBS+=$(CORBA_LIBS) LIBS+=$(CORBA_LIBS)
DOXYGEN = @DOXYGEN@ DOXYGEN = @DOXYGEN@
DOXYGEN_WITH_PYTHON = @DOXYGEN_WITH_PYTHON@
DOXYGEN_WITH_STL = @DOXYGEN_WITH_STL@
## Shared libraries ## Shared libraries
LT_STATIC_EXEC=@LT_STATIC_EXEC@ LT_STATIC_EXEC=@LT_STATIC_EXEC@

View File

@ -56,9 +56,10 @@ WARN_LOGFILE = log.txt
#--------------------------------------------------------------------------- #---------------------------------------------------------------------------
# configuration options related to the input files # configuration options related to the input files
#--------------------------------------------------------------------------- #---------------------------------------------------------------------------
INPUT = ../../../share/salome/idl/GEOM_Gen.idl INPUT = ../../../share/salome/idl/GEOM_Gen.idl \
FILE_PATTERNS = ../../../build/salome/bin
RECURSIVE = NO FILE_PATTERNS = *.idl python_extension_must_be_here
RECURSIVE = YES
EXCLUDE = EXCLUDE =
EXCLUDE_SYMLINKS = NO EXCLUDE_SYMLINKS = NO
EXCLUDE_PATTERNS = EXCLUDE_PATTERNS =

View File

@ -26,21 +26,39 @@ docs:
cp -fr $(srcdir)/GEOM ./INPUT cp -fr $(srcdir)/GEOM ./INPUT
cd INPUT; \ cd INPUT; \
sed 's|../../../share/salome|$(root_srcdir)|' ./doxyfile > ./doxyfile1; \ sed 's|../../../share/salome|$(root_srcdir)|' ./doxyfile > ./doxyfile1; \
mv -f doxyfile1 doxyfile; \ sed 's|../../build/salome|$(top_builddir)|' ./doxyfile1 > ./doxyfile2; \
$(doxygen) ./doxyfile; \ mv -f doxyfile2 doxyfile1; \
mkdir py1; mkdir py2; \ if (test "x@DOXYGEN_WITH_PYTHON@" = "xyes"); then \
cd .. echo "DOXYGEN SUPPORT PYTHON - @DOXYGEN_WITH_PYTHON@"; \
for file in $(PYTHON_SCRIPTS) dummy; do \ sed 's|python_extension_must_be_here|*.py|' ./doxyfile1 > ./doxyfile2; \
if [ $$file != "dummy" ]; then \ mv -f doxyfile2 doxyfile1; \
cp $(root_srcdir)/src/GEOM_SWIG/$$file INPUT/py1/; \ $(doxygen) -u ./doxyfile1; \
fi ; \ if( test "x@DOXYGEN_WITH_STL@" = "xyes"); then \
done sed -e 's|BUILTIN_STL_SUPPORT = NO|BUILTIN_STL_SUPPORT = YES|' ./doxyfile1 > ./doxyfile2; \
cd INPUT; \ mv -f doxyfile2 doxyfile1; \
python $(KERNEL_ROOT_DIR)/doc/salome/tui/KERNEL/pythfilter.py ./py1 ./py2; \ fi; \
sed 's|list_py_files_to_process|$(PYTHON_SCRIPTS)|' ./doxyfile_py > py2/doxyfile_py; \ mv -f doxyfile1 doxyfile; \
cd py2; \ $(doxygen) ./doxyfile; \
$(doxygen) ./doxyfile_py; \ cd ..; \
cd ../..; \ else \
sed 's|python_extension_must_be_here||' ./doxyfile1 > ./doxyfile2; \
mv -f doxyfile2 doxyfile1; \
mv -f doxyfile1 doxyfile; \
$(doxygen) ./doxyfile; \
mkdir py1; mkdir py2; \
cd ..; \
for file in $(PYTHON_SCRIPTS) dummy; do \
if [ $$file != "dummy" ]; then \
cp $(root_srcdir)/src/GEOM_SWIG/$$file INPUT/py1/; \
fi ; \
done; \
cd INPUT; \
python $(KERNEL_ROOT_DIR)/share/doc/salome/tui/KERNEL/pythfilter.py ./py1 ./py2; \
sed 's|list_py_files_to_process|$(PYTHON_SCRIPTS)|' ./doxyfile_py > py2/doxyfile_py; \
cd py2; \
$(doxygen) ./doxyfile_py; \
cd ../..; \
fi; \
cp -fr $(srcdir)/GEOM/sources/static/*.* ./GEOM/ cp -fr $(srcdir)/GEOM/sources/static/*.* ./GEOM/
cp -fr $(srcdir)/GEOM/sources/ GEOM/ cp -fr $(srcdir)/GEOM/sources/ GEOM/
cp -fr $(srcdir)/GEOM/HTML/ GEOM/ cp -fr $(srcdir)/GEOM/HTML/ GEOM/