Salome HOME
Increment version number (prepare SALOME version 7.0.0)
[modules/med.git] / configure.ac
1 # Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 # Author : Marc Tajchman (CEA)
21 # Date : 28/06/2001
22 # Modified by : Patrick GOLDBRONN (CEA)
23 # Modified by : Marc Tajchman (CEA)
24 # Modified by : Mikhail PONIKAROV (OCN)
25 #
26 AC_INIT([Salome2 Project MED module], [7.0.0], [webmaster.salome@opencascade.com], [SalomeMED])
27 AC_CONFIG_AUX_DIR(adm_local/unix/config_files)
28 AC_CANONICAL_HOST
29 AC_CANONICAL_TARGET
30 AM_INIT_AUTOMAKE([tar-pax -Wno-portability])
31
32 XVERSION=`echo $VERSION | awk -F. '{printf("0x%02x%02x%02x",$1,$2,$3)}'`
33 AC_SUBST(XVERSION)
34 VERSION_DEV=1
35 AC_SUBST(VERSION_DEV)
36
37 # set up MODULE_NAME variable for dynamic construction of directories (resources, etc.)
38 MODULE_NAME=med
39 AC_SUBST(MODULE_NAME)
40
41 dnl
42 dnl Initialize source and build root directories
43 dnl
44 ROOT_BUILDDIR=`pwd`
45 ROOT_SRCDIR=`echo $0 | sed -e "s,[[^/]]*$,,;s,/$,,;s,^$,.,"`
46 cd $ROOT_SRCDIR
47 ROOT_SRCDIR=`pwd`
48 cd $ROOT_BUILDDIR
49
50 AC_SUBST(ROOT_SRCDIR)
51 AC_SUBST(ROOT_BUILDDIR)
52
53 echo
54 echo Source root directory : $ROOT_SRCDIR
55 echo Build  root directory : $ROOT_BUILDDIR
56 echo
57
58 dnl remember MED_WITH_KERNEL set by build configure
59 MED_WITH_KERNEL=yes
60 old_with_kernel=${MED_WITH_KERNEL}
61
62 dnl
63 dnl Check --with-kernel option
64 dnl
65 dnl  ---------------------------------------------
66                  WITH_KERNEL
67 dnl  ---------------------------------------------
68 dnl
69
70 dnl   Update and re-run configure if there was  build_configure --without-kernel
71 dnl   but configure --with-kernel=DIR is being called
72
73 if test "x${old_with_kernel}" != "x${MED_WITH_KERNEL}"; then
74     if test "x${old_with_kernel}" = "xno" ; then
75          if test ! -d "${KERNEL_ROOT_DIR}"; then
76              echo "failed : KERNEL_ROOT_DIR variable is not correct !"
77              exit
78          fi
79          kernel_check_in_aclocal=`grep KERNEL_ROOT_DIR ${ROOT_SRCDIR}/aclocal.m4`
80          if test "x${kernel_check_in_aclocal}" = "x"; then
81              echo "Configuration changed: without KERNEL -> with KERNEL"
82              echo -n "Updating 'configure' script ...  "
83              cd $ROOT_SRCDIR
84            if build_configure --with-kernel={MED_WITH_KERNEL}; then
85              echo "... done"
86            else
87              echo "... failed"
88              cd $ROOT_BUILDDIR
89              exit 1
90            fi
91              cd $ROOT_BUILDDIR
92              $0 $*
93              exit
94          fi
95     fi
96 fi
97
98 echo
99 echo ---------------------------------------------
100 echo "MED_WITH_KERNEL: ${MED_WITH_KERNEL}"
101 echo ---------------------------------------------
102 echo
103
104 ###
105 # --with-interp-kernel-only option: available only in --with-kernel=no mode (see build_configure)
106 ###
107
108 AC_ARG_WITH([interp-kernel-only],
109           [AC_HELP_STRING([--with-interp-kernel-only],[Build MicroMED packages only, default=no])],
110           [],[with_interp_kernel_only=no])
111
112 if test "$MED_WITH_KERNEL" == "yes" ; then
113   if test "$with_interp_kernel_only" != "no" ; then
114     AC_MSG_WARN([Option --with-interp-kernel-only is supported in --without-kernel mode only])
115   fi
116   with_interp_kernel_only="no"
117 fi
118
119 ###
120 # Common tests
121 ###
122
123 dnl Modification B. Secher portage sur osf CCRT
124 AC_CHECK_PROG(SHELL,sh,,)
125 AC_SUBST(SHELL)
126
127 if test -z "$AR"; then
128    AC_CHECK_PROGS(AR,ar xar,:,$PATH)
129 fi
130 AC_SUBST(AR)
131
132 dnl Export the AR macro so that it will be placed in the libtool file
133 dnl correctly.
134 export AR
135
136 echo
137 echo ---------------------------------------------
138 echo testing make
139 echo ---------------------------------------------
140 echo
141
142 AC_PROG_MAKE_SET
143 AC_PROG_INSTALL
144 AC_LOCAL_INSTALL
145 dnl 
146 dnl libtool macro check for CC, LD, NM, LN_S, RANLIB, STRIP + pour les librairies dynamiques !
147
148 AC_ENABLE_DEBUG(yes)
149 AC_DISABLE_PRODUCTION
150
151 echo
152 echo ---------------------------------------------
153 echo testing libtool
154 echo ---------------------------------------------
155 echo
156
157 dnl first, we set static to no!
158 dnl if we want it, use --enable-static
159 AC_ENABLE_STATIC(no)
160
161 AC_LIBTOOL_DLOPEN
162 AC_PROG_LIBTOOL
163
164 dnl Fix up the INSTALL macro if it s a relative path. We want the
165 dnl full-path to the binary instead.
166 case "$INSTALL" in
167    *install-sh*)
168       INSTALL='\${ROOT_BUILDDIR}'/adm_local/unix/config_files/install-sh
169       ;;
170 esac
171
172 echo
173 echo ---------------------------------------------
174 echo testing C/C++
175 echo ---------------------------------------------
176 echo
177
178 cc_ok=no
179 dnl inutil car libtool
180 dnl AC_PROG_CC
181 AC_PROG_CXX
182 AC_CXX_WARNINGS
183 AC_CXX_TEMPLATE_OPTIONS
184 AC_DEPEND_FLAG
185 # AC_CC_WARNINGS([ansi])
186 cc_ok=yes
187
188 dnl Library libdl :
189 AC_CHECK_LIB(dl,dlopen)
190
191 dnl Library librt : for alpha/osf
192 AC_CHECK_LIB(rt,nanosleep)
193
194 dnl add library libm :
195 AC_CHECK_LIB(m,ceil)
196
197 dnl 
198 dnl Check if we use std iostream by default or if we must add
199 dnl a compiler directive for that
200 dnl
201
202 AC_CXX_USE_STD_IOSTREAM
203
204 dnl 
205 dnl Well we use sstream which is not in gcc pre-2.95.3
206 dnl We must test if it exists. If not, add it in include !
207 dnl
208
209 AC_CXX_HAVE_SSTREAM
210
211 dnl
212 dnl ---------------------------------------------
213 dnl testing linker
214 dnl ---------------------------------------------
215 dnl
216
217 AC_LINKER_OPTIONS
218
219 echo
220 echo ---------------------------------------------
221 echo testing threads
222 echo ---------------------------------------------
223 echo
224
225 ENABLE_PTHREADS
226
227 echo
228 echo ---------------------------------------------
229 echo testing MPI
230 echo ---------------------------------------------
231 echo
232
233 CHECK_MPI
234
235 echo
236 echo ---------------------------------------------
237 echo testing HDF5
238 echo ---------------------------------------------
239 echo
240
241 CHECK_HDF5
242
243 echo
244 echo ---------------------------------------------
245 echo testing MED3
246 echo ---------------------------------------------
247 echo
248
249 CHECK_MED3
250
251 echo
252 echo ---------------------------------------------------
253 echo "testing CPPUNIT (only required for unitary testing)"
254 echo --------------------------------------------------
255 echo
256
257 CHECK_CPPUNIT
258
259 echo
260 echo ---------------------------------------------
261 echo testing FVM library generators
262 echo ---------------------------------------------
263 echo
264
265 CHECK_FVM
266
267 echo
268 echo ---------------------------------------------
269 echo testing html generators
270 echo ---------------------------------------------
271 echo
272
273 CHECK_HTML_GENERATORS
274
275 ###
276 # Defaults
277 ###
278
279 gui_ok=no
280 # CHECK_GUI ONLY if MED_WITH_KERNEL is yes
281
282 WITHIHM="no"
283
284 ###
285 # Other tests should be performed only in --with-interp-kernel-only=no mode
286 ###
287
288 if test "$with_interp_kernel_only" != "yes" ; then
289     
290     echo
291     echo ---------------------------------------------
292     echo testing python
293     echo ---------------------------------------------
294     echo
295     
296     CHECK_PYTHON
297     
298     echo
299     echo ---------------------------------------------
300     echo testing swig
301     echo ---------------------------------------------
302     echo
303     
304     AM_PATH_PYTHON(2.3)
305     CHECK_SWIG
306     
307     echo
308     echo ---------------------------------------------
309     echo testing BOOST Library
310     echo ---------------------------------------------
311     echo
312     
313     CHECK_BOOST 
314
315     
316     echo
317     echo ---------------------------------------------
318     echo checking SPLITTER
319     echo ---------------------------------------------
320     echo
321     
322     AC_ENABLE_SPLITTER(yes)
323     
324     if test "x$ENABLE_SPLITTER" = "xyes"; then
325
326         echo  
327         echo --------------------------------------------- 
328         echo testing ParMETIS 
329         echo ---------------------------------------------
330         echo 
331         parmetis_ok=no 
332         CHECK_PARMETIS dnl parmetis_ok is set to yes by CHECK_PARMETIS
333
334         echo  
335         echo --------------------------------------------- 
336         echo testing METIS 
337         echo ---------------------------------------------
338         echo 
339         metis_ok=no 
340         CHECK_METIS dnl metis_ok is set to yes by CHECK_METIS
341         
342         echo  
343         echo --------------------------------------------- 
344         echo testing SCOTCH 
345         echo ---------------------------------------------
346         scotch_ok=no 
347         CHECK_SCOTCH 
348         dnl scotch_ok is set to yes by CHECK_SCOTCH    
349         
350         echo        
351         echo --------------------------------------------- 
352         echo testing LIBXML2
353         echo ---------------------------------------------
354         libxml_ok=no 
355         CHECK_LIBXML 
356         dnl libxml_ok is set to yes by CHECK_LIBXML         
357         
358     fi
359     
360     AC_ENABLE_RENUMBER(yes)
361
362     if test "x$ENABLE_RENUMBER" = "xyes"; then
363         if test "x$metis_ok" = "x"; then
364             echo  
365             echo --------------------------------------------- 
366             echo testing METIS 
367             echo ---------------------------------------------
368             echo 
369             metis_ok=no 
370             CHECK_METIS dnl metis_ok is set to yes by CHECK_METIS
371         fi
372     fi
373
374     if test "${MED_WITH_KERNEL}" = "yes"; then
375         
376       dnl
377       dnl ---------------------------------------------
378       dnl testing sockets
379       dnl ---------------------------------------------
380       dnl
381         
382       CHECK_SOCKETS
383         
384       echo
385       echo ---------------------------------------------
386       echo testing omniORB
387       echo ---------------------------------------------
388       echo
389         
390       CHECK_OMNIORB
391         
392       DEFAULT_ORB=omniORB
393       CHECK_CORBA
394         
395       AC_SUBST_FILE(CORBA)
396       corba=make_$ORB
397       CORBA=adm_local/unix/$corba
398         
399       dnl echo
400       dnl echo ---------------------------------------------
401       dnl echo testing mico
402       dnl echo ---------------------------------------------
403       dnl echo
404         
405       dnl CHECK_MICO
406         
407       echo
408       echo ---------------------------------------------
409       echo testing SALOME Kernel
410       echo ---------------------------------------------
411       echo
412         
413       CHECK_KERNEL
414         
415         echo
416         echo ---------------------------------------------
417         echo testing SALOME GUI
418         echo ---------------------------------------------
419         echo
420         
421         CHECK_GUI_MODULE
422         
423         if test "${SalomeGUI_need}" != "no" -a "${FullGUI_ok}" = "yes" ; then 
424             gui_ok=yes
425         fi
426         
427         if test "${SalomeGUI_need}" == "yes"; then
428             if test "${FullGUI_ok}" != "yes"; then
429                 AC_MSG_WARN(For configure MED module necessary full GUI!)
430             fi
431         elif test "${SalomeGUI_need}" == "auto"; then
432             if test "${FullGUI_ok}" != "yes"; then
433                 AC_MSG_WARN(Full GUI not found. Build will be done without GUI!)
434             fi
435         elif test "${SalomeGUI_need}" == "no"; then
436             echo Build without GUI option has been chosen
437         fi
438         
439       if test "${gui_ok}" = "yes" ; then
440             
441             echo
442             echo ---------------------------------------------
443             echo testing LEX \& YACC
444             echo ---------------------------------------------
445             echo
446             
447             lex_yacc_ok=no
448             AC_PROG_YACC
449             AC_PROG_LEX
450             lex_yacc_ok=yes
451             
452             echo
453             echo ---------------------------------------------
454             echo testing openGL
455             echo ---------------------------------------------
456             echo
457             
458             CHECK_OPENGL
459             
460             echo
461             echo ---------------------------------------------
462             echo testing QT
463             echo ---------------------------------------------
464             echo
465             
466             CHECK_QT
467             
468             echo
469             echo ---------------------------------------------
470             echo testing VTK
471             echo ---------------------------------------------
472             echo
473             
474             CHECK_VTK
475             
476             echo
477             echo ---------------------------------------------
478             echo testing OpenCascade
479             echo ---------------------------------------------
480             echo
481             
482             CHECK_CAS
483             
484         fi # if "${gui_ok}" = "yes" ...
485         
486     fi # MED_WITH_KERNEL
487     
488 fi # "$with_interp_kernel_only" != "yes" ...
489
490
491 ###
492 # Additional substitutions
493 ###
494
495 AC_SUBST(WITHIHM)
496
497 ###
498 # Conditionals
499 ###
500
501 AM_CONDITIONAL(MED_ENABLE_KERNEL,   [test "$MED_WITH_KERNEL" = yes])
502 AM_CONDITIONAL(MED_ENABLE_MICROMED, [test "$with_interp_kernel_only" = yes])
503 AM_CONDITIONAL(MED_ENABLE_GUI,      [test "${gui_ok}" = "yes"])
504 AM_CONDITIONAL(MED_ENABLE_SSTREAM,  [test "$HAVE_SSTREAM" = yes])
505 AM_CONDITIONAL(MED_SWIG_1_3_21,     [test "$SWIG_VERSION" = 1.3.21])
506 AM_CONDITIONAL(MED_ENABLE_SPLITTER, [test "$ENABLE_SPLITTER" = yes])
507 AM_CONDITIONAL(MED_ENABLE_PARMETIS, [test "$ENABLE_PARMETIS" = yes])
508 AM_CONDITIONAL(MED_ENABLE_METIS,    [test "$ENABLE_METIS" = yes])
509 AM_CONDITIONAL(MED_ENABLE_SCOTCH,   [test "$ENABLE_SCOTCH" = yes])
510 AM_CONDITIONAL(MED_WITHMPI,         [test "$WITHMPI" = yes])
511 AM_CONDITIONAL(MED_ENABLE_FVM,      [test "$ENABLE_FVM" = yes])
512 AM_CONDITIONAL(MED_ENABLE_MED3,     [test "$med3_ok" = yes])
513 AM_CONDITIONAL(MED_ENABLE_RENUMBER, [test "$ENABLE_RENUMBER" = yes])
514 AM_CONDITIONAL(BOOST_IS_OK,         [test "$boost_ok" = yes])
515 ###
516 # Print summary
517 ###
518
519 echo
520 echo ---------------------------------------------
521 echo Summary
522 echo ---------------------------------------------
523 echo
524
525 if test "$with_interp_kernel_only" = "yes"; then 
526     echo "Configure (Micro MED)"
527 elif test "$MED_WITH_KERNEL" = "no"; then 
528     echo "Configure (without Kernel)"
529 elif test "${SalomeGUI_need}" == "no"; then
530     echo "Configure (without GUI)"
531 else
532     echo Configure
533 fi
534
535 obligatory_vars="cc_ok threads_ok doxygen_ok"
536 optional_vars="mpi_ok fvm_ok cppunit_ok"
537 gui_vars=""
538
539 if test "x$ENABLE_SPLITTER" = "xyes" ; then
540   splitter_obligatory_vars="libxml_ok"
541   splitter_optional_vars="metis_ok parmetis_ok scotch_ok"
542 fi
543
544 if test "x$ENABLE_RENUMBER" = "xyes" ; then
545   if test "x$splitter_optional_vars" = "x" ; then
546     renumber_optional_vars="metis_ok"
547   fi
548 fi
549 if test "$MED_WITH_KERNEL" = "yes" ; then 
550     # --with-kernel=yes
551     obligatory_vars="$obligatory_vars python_ok boost_ok swig_ok hdf5_ok med3_ok omniORB_ok $splitter_obligatory_vars"
552     optional_vars="$optional_vars $splitter_optional_vars $renumber_optional_vars graphviz_ok Kernel_ok"
553     if test "${gui_ok}" = "yes"; then
554         # GUI is enabled
555         gui_vars="lex_yacc_ok OpenGL_ok qt_ok vtk_ok occ_ok gui_ok"
556     elif test "${SalomeGUI_need}" != "no"; then
557         gui_vars="gui_ok"
558     fi
559 else
560     # --with-kernel=no
561     if test "$with_interp_kernel_only" == "yes" ; then
562         # --with-interp-kernel-only=yes mode
563         optional_vars="$optional_vars $splitter_optional_vars $renumber_optional_vars hdf5_ok med3_ok"
564     else
565         # --with-interp-kernel-only=no mode
566         obligatory_vars="$obligatory_vars python_ok boost_ok swig_ok hdf5_ok med3_ok $splitter_obligatory_vars"
567     fi
568 fi
569
570 ###
571 # obligatory products
572 ###
573
574 echo "--- Obligatory products:"
575
576 missing_obligatory=no
577 for var in $obligatory_vars
578 do
579    eval toto=\$$var
580    if test x$toto == "x"; then toto="no" ; fi
581    if test x$toto == "xno"; then missing_obligatory=yes ; fi
582      printf "   %10s : " `echo \$var | sed -e "s,_ok,,"`
583      eval echo \$$var
584    #fi
585 done
586 if test x$missing_obligatory == "xyes"; then 
587 AC_MSG_ERROR([one or more obligatory product is missing])
588 fi
589
590 ###
591 # GUI products (if enabled)
592 ###
593
594 if test "$gui_vars" != "" ; then
595
596     echo "--- GUI products (optional):"
597
598     for var in $gui_vars
599     do
600         eval toto=\$$var
601         if test x$toto == "x"; then toto="no"; fi
602         printf "   %10s : " `echo \$var | sed -e "s,_ok,,"`
603         eval echo \$toto
604     done
605 fi
606
607 ###
608 # optional products
609 ###
610
611 echo "--- Other (optional) products:"
612
613 for var in $optional_vars
614 do
615    eval toto=\$$var
616    if test x$toto != "x"; then
617      printf "   %10s : " `echo \$var | sed -e "s,_ok,,"`
618      eval echo \$$var
619    fi
620 done
621
622 ###
623 # default ORB (if enabled)
624 ###
625
626 if test "$DEFAULT_ORB" != "" ; then
627    echo
628    echo "Default ORB   : $DEFAULT_ORB"
629    echo
630 fi
631
632 dnl We don t need to say when we re entering directories if we re using
633 dnl GNU make becuase make does it for us.
634 if test "X$GMAKE" = "Xyes"; then
635    AC_SUBST(SETX) SETX=":"
636 else
637    AC_SUBST(SETX) SETX="set -x"
638 fi
639
640 if test -n "${NO_MED_TRACE+X}"; then
641     CPPFLAGS="${CPPFLAGS} -D_NO_MED_TRACE_"
642 fi
643
644 echo
645 echo ---------------------------------------------
646 echo generating Makefiles and configure files
647 echo ---------------------------------------------
648 echo
649
650 AC_OUTPUT_COMMANDS([ \
651       chmod +x ./bin/* \
652 ])
653
654 AC_HACK_LIBTOOL
655 AC_CONFIG_COMMANDS([hack_libtool],[
656 sed -i "s%^CC=\"\(.*\)\"%hack_libtool (){ \n\
657   $(pwd)/hack_libtool \1 \"\$[@]\" \n\
658 }\n\
659 CC=\"hack_libtool\"%g" libtool
660 sed -i "s%\(\s*\)for searchdir in \$newlib_search_path \$lib_search_path \$sys_lib_search_path \$shlib_search_path; do%\1searchdirs=\"\$newlib_search_path \$lib_search_path \$sys_lib_search_path \$shlib_search_path\"\n\1for searchdir in \$searchdirs; do%g" libtool
661 sed -i "s%\(\s*\)searchdirs=\"\$newlib_search_path \$lib_search_path \(.*\)\"%\1searchdirs=\"\$newlib_search_path \$lib_search_path\"\n\1sss_beg=\"\"\n\1sss_end=\"\2\"%g" libtool
662 sed -i "s%\(\s*\)\(for searchdir in \$searchdirs; do\)%\1for sss in \$searchdirs; do\n\1  if ! test -d \$sss; then continue; fi\n\1  ssss=\$(cd \$sss; pwd)\n\1  if test \"\$ssss\" != \"\" \&\& test -d \$ssss; then\n\1    case \$ssss in\n\1      /usr/lib | /usr/lib64 ) ;;\n\1      * ) sss_beg=\"\$sss_beg \$ssss\" ;;\n\1    esac\n\1  fi\n\1done\n\1searchdirs=\"\$sss_beg \$sss_end\"\n\1\2%g" libtool
663 ],[])
664
665 AC_OUTPUT([ \
666         adm_local_without_kernel/unix/SALOMEconfig.h \
667         Makefile \
668         MED_version.h \
669         adm_local/unix/config_files/Makefile \
670         adm_local/unix/Makefile \
671         adm_local/cmake_files/Makefile \
672         adm_local/Makefile \
673         adm_local_without_kernel/unix/config_files/Makefile \
674         adm_local_without_kernel/unix/Makefile \
675         adm_local_without_kernel/Makefile \
676         resources/Makefile
677         resources/SalomeApp.xml \
678         resources/MEDCatalog.xml \
679         bin/Makefile \
680         bin/VERSION \
681         idl/Makefile \
682         src/Makefile \
683         src/MEDWrapper/Makefile \
684         src/MEDWrapper/Base/Makefile \
685         src/MEDWrapper/Factory/Makefile \
686         src/MEDWrapper/V2_2/Makefile \
687         src/MEDMEM/Doxyfile_med_devel \
688         src/MEDMEM/Doxyfile_med_user \
689         src/MEDMEM/Makefile \
690         src/MEDMEM_SWIG/Makefile \
691         src/MEDMEMBinTest/Makefile \
692         src/MEDMEMCppTest/Makefile \
693         src/INTERP_KERNEL/Makefile \
694         src/INTERP_KERNELTest/Makefile \
695         src/MEDCoupling/Makefile \
696         src/MEDCoupling/Test/Makefile \
697         src/MEDLoader/Makefile \
698         src/MEDLoader/Swig/Makefile \
699         src/MEDLoader/Test/Makefile \
700         src/MEDCoupling_Swig/Makefile \
701         src/MEDCouplingCorba/Makefile \
702         src/MEDCouplingCorba/Client/Makefile \
703         src/MEDCouplingCorba/Test/Makefile \
704         src/MEDCouplingCorba_Swig/Makefile \
705         src/MEDCouplingCorba_Swig/Client/Makefile \
706         src/MEDCalculator/Makefile \
707         src/MEDCalculator/Swig/Makefile \
708         src/MEDCalculator/Test/Makefile \
709         src/MEDSPLITTER/Makefile \
710         src/MEDSPLITTER/Test/Makefile \
711         src/MEDSPLITTER_Swig/Makefile \
712         src/MEDPartitioner/Makefile \
713         src/MEDPartitioner/Test/Makefile \
714         src/RENUMBER/Makefile \
715         src/ParaMEDCouplingCorba/Makefile \
716         src/ParaMEDMEM/Makefile \
717         src/ParaMEDMEMComponent/Makefile \
718         src/ParaMEDLoader/Makefile \
719         src/ParaMEDMEMTest/Makefile \
720         src/ParaMEDMEM_Swig/Makefile \
721         src/MEDMEM_I/Makefile \
722         src/MED/Makefile \
723         src/MedCorba_Swig/Makefile \
724         src/MED_SWIG/Makefile \
725         src/MedClient/Makefile \
726         src/MedClient/src/Makefile \
727         src/MedClient/test/Makefile \
728         src/MedClient/test/environ/Makefile \
729         src/MedClient/test/environ/runContainer \
730         src/MedClient/test/environ/runEnvironTests \
731         src/MedClient/test/environ/runTestMedCorba \
732         src/MedClient/test/environ/stopContainer \
733         src/MedClient/test/environ/csh/init1 \
734         src/MedClient/test/environ/csh/init2 \
735         src/MedClient/test/environ/csh/init3 \
736         src/MedClient/test/environ/csh/Makefile \
737         src/MedClient/test/environ/csh/runContainer \
738         src/MedClient/test/environ/csh/runEnvironTests \
739         src/MedClient/test/environ/csh/stopContainer \
740         src/MedClient/test/test1/Makefile \
741         src/MedClient/test/test2/Makefile \
742         src/MEDGUI/Makefile \
743         doc/Makefile \
744         doc/MEDMEM/Makefile \
745         doc/MEDMEM/MEDMEM_Content.tex \
746         doc/MEDMEM/MEDMEM_UML_light.png \
747         doc/MEDMEM/MEDMEM_UML.png \
748         doc/MEDMEM/MEDMEM_UsersGuide.tex \
749         doc/salome/Makefile \
750         doc/salome/tui/Makefile \
751         doc/salome/tui/doxyfile \
752         doc/salome/tui/static/header.html \
753         doc/doxygen/Makefile \
754         doc/doxygen/Doxyfile_med_user \
755         doc/doxygen/static/header.html \
756 ])