X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=doc%2Fsalome%2Ftui%2FMakefile.am;h=642b5f1d00e3880c69e26aa5283e15c688156163;hp=2139db94dcf1b7babd211fbc1c8d082bbaf99201;hb=f15129eb5548930b4cbc71d6d27f0ee3f5b8afc1;hpb=85c0f447729c6ed2f90d83051d79a4d308596a2e diff --git a/doc/salome/tui/Makefile.am b/doc/salome/tui/Makefile.am index 2139db94d..642b5f1d0 100644 --- a/doc/salome/tui/Makefile.am +++ b/doc/salome/tui/Makefile.am @@ -31,25 +31,20 @@ dev_docs: cp -fr $(srcdir)/SMESH ./INPUT; \ cp -f ./SMESH/doxyfile ./INPUT; \ cd INPUT; \ - sed 's|../../../share/salome|$(top_srcdir)|' ./doxyfile > ./doxyfile1; \ - sed 's|../../build/salome|$(top_builddir)|' ./doxyfile1 > ./doxyfile2; \ - mv -f doxyfile2 doxyfile1; \ echo "DOXYGEN SUPPORT PYTHON - @DOXYGEN_WITH_PYTHON@"; \ if( test "x@DOXYGEN_WITH_PYTHON@" = "xyes"); then \ - sed 's|python_extension_must_be_here|*.py|' ./doxyfile1 > ./doxyfile2; \ - mv -f doxyfile2 doxyfile1; \ - $(DOXYGEN) -u ./doxyfile1; \ + sed 's|python_extension_must_be_here|*.py|' doxyfile > doxyfile1; \ else \ - sed 's|python_extension_must_be_here||' ./doxyfile1 > ./doxyfile2; \ - mv -f doxyfile2 doxyfile1; \ + sed 's|python_extension_must_be_here||' doxyfile > doxyfile1; \ fi; \ + mv -f doxyfile1 doxyfile; \ if( test "x@DOXYGEN_WITH_STL@" = "xyes"); then \ - sed -e 's|BUILTIN_STL_SUPPORT = NO|BUILTIN_STL_SUPPORT = YES|' ./doxyfile1 > ./doxyfile2; \ - mv -f doxyfile2 doxyfile1; \ + sed -e 's|BUILTIN_STL_SUPPORT = NO|BUILTIN_STL_SUPPORT = YES|' doxyfile > doxyfile1; \ + mv -f doxyfile1 doxyfile; \ fi; \ - mv -f doxyfile1 doxyfile; \ + $(DOXYGEN) -u doxyfile; \ echo "Running doxygen in directory:"`pwd`; \ - $(DOXYGEN) ./doxyfile; \ + $(DOXYGEN) doxyfile; \ cd ../; \ cp -fr $(srcdir)/SMESH/sources/ SMESH ; \ rm -fr INPUT @@ -58,3 +53,13 @@ doctuidir=$(docdir)/tui/SMESH nodist_doctui_DATA= SMESH/doxyfile EXTRA_DIST+= SMESH/doxyfile.in + +install-data-local: + if test -d SMESH; then \ + $(INSTALL) -d $(docdir)/tui ; \ + cp -rp SMESH $(docdir)/tui ; \ + find $(docdir)/tui -name CVS -prune -exec rm -rf {} ";" ; \ + fi; + +uninstall-local: + rm -rf $(docdir)/tui/SMESH