]> SALOME platform Git repositories - modules/kernel.git/blob - doc/salome/tui/Makefile.am
Salome HOME
Join modifications from branch BR_PR_V320b1
[modules/kernel.git] / doc / salome / tui / Makefile.am
1 # -* Makefile *- 
2 #
3 # Author : Paul RASCLE (EDF)
4 # Date : 16/02/2006
5 # $Header$
6 #
7
8 include $(top_srcdir)/salome_adm/unix/make_common_starter.am
9
10 EXTRA_DIST = $(srcdir)/KERNEL
11
12 dist-hook:
13         rm -rf `find $(distdir) -name CVS`
14
15 userdoc:
16         cp -fr $(srcdir)/KERNEL ./INPUT; \
17         cd INPUT; \
18         sed 's|../../../share/salome|@top_srcdir@|' ./doxyfile > ./doxyfile1; \
19         sed 's|../../../build/salome|@top_builddir@|' ./doxyfile1 > ./doxyfile2; \
20         mv -f doxyfile2 doxyfile1; \
21         echo "DOXYGEN SUPPORT PYTHON - $(DOXYGEN_WITH_PYTHON)"; \
22         if( test "x$(DOXYGEN_WITH_PYTHON)" = "xyes"); then \
23           sed 's|python_extension_must_be_here|*.py|' ./doxyfile1 > ./doxyfile2; \
24           mv -f doxyfile2 doxyfile1; \
25           $(DOXYGEN) -u ./doxyfile1; \
26         else \
27           sed 's|python_extension_must_be_here||' ./doxyfile1 > ./doxyfile2; \
28           mv -f doxyfile2 doxyfile1; \
29         fi; \
30         if( test "x$(DOXYGEN_WITH_STL)" = "xyes"); then \
31           sed -e 's|BUILTIN_STL_SUPPORT    = NO|BUILTIN_STL_SUPPORT    = YES|' ./doxyfile1 > ./doxyfile2; \
32           mv -f doxyfile2 doxyfile1; \
33         fi; \
34         mv -f doxyfile1 doxyfile; \
35         $(DOXYGEN) ./doxyfile; \
36         cd ..;
37         $(INSTALL) -d $(docdir)/tui/KERNEL;
38         cp -fr KERNEL $(docdir)/tui
39         cp -fr $(srcdir)/KERNEL/sources/static/*.* $(docdir)/tui/KERNEL;
40         cp -fr $(srcdir)/KERNEL/sources/ $(docdir)/tui/KERNEL;
41         cp -fr $(srcdir)/KERNEL/HTML/ $(docdir)/tui/KERNEL;
42         cp -f $(srcdir)/pythfilter.py $(docdir)/tui/KERNEL;
43