Salome HOME
Merge from V6_main (04/10/2012)
[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_SPHINX
274 CHECK_HTML_GENERATORS
275
276 ###
277 # Defaults
278 ###
279
280 gui_ok=no
281 # CHECK_GUI ONLY if MED_WITH_KERNEL is yes
282
283 WITHIHM="no"
284
285 # This flags should be used to switch between the MEDMEM GUI (defined
286 # in the MEDGUI package) and the MEDOP GUI (defined in the MEDOP
287 # package). In any case the module factory function is provided by the
288 # MEDOP GUI library (package MEDOP/gui) and this factory function
289 # creates weither a MedGUI instance or a MEDOPModule instance,
290 # depending on the value of this flags. The default is to use the new
291 # MEDOP GUI. 
292 AM_CONDITIONAL(WITH_MEDMEMGUI,test "1" = "0")
293
294 ###
295 # Other tests should be performed only in --with-interp-kernel-only=no mode
296 ###
297
298 if test "$with_interp_kernel_only" != "yes" ; then
299     
300     echo
301     echo ---------------------------------------------
302     echo testing python
303     echo ---------------------------------------------
304     echo
305     
306     CHECK_PYTHON
307     
308     echo
309     echo ---------------------------------------------
310     echo testing swig
311     echo ---------------------------------------------
312     echo
313     
314     AM_PATH_PYTHON(2.3)
315     CHECK_SWIG
316     
317     echo
318     echo ---------------------------------------------
319     echo testing BOOST Library
320     echo ---------------------------------------------
321     echo
322     
323     CHECK_BOOST 
324
325     
326     echo
327     echo ---------------------------------------------
328     echo checking SPLITTER
329     echo ---------------------------------------------
330     echo
331     
332     AC_ENABLE_SPLITTER(yes)
333     
334     if test "x$ENABLE_SPLITTER" = "xyes"; then
335
336         echo  
337         echo --------------------------------------------- 
338         echo testing ParMETIS 
339         echo ---------------------------------------------
340         echo 
341         parmetis_ok=no 
342         CHECK_PARMETIS dnl parmetis_ok is set to yes by CHECK_PARMETIS
343
344         echo  
345         echo --------------------------------------------- 
346         echo testing METIS 
347         echo ---------------------------------------------
348         echo 
349         metis_ok=no 
350         CHECK_METIS dnl metis_ok is set to yes by CHECK_METIS
351         
352         echo  
353         echo --------------------------------------------- 
354         echo testing SCOTCH 
355         echo ---------------------------------------------
356         scotch_ok=no 
357         CHECK_SCOTCH 
358         dnl scotch_ok is set to yes by CHECK_SCOTCH    
359         
360         echo        
361         echo --------------------------------------------- 
362         echo testing LIBXML2
363         echo ---------------------------------------------
364         libxml_ok=no 
365         CHECK_LIBXML 
366         dnl libxml_ok is set to yes by CHECK_LIBXML         
367         
368     fi
369     
370     AC_ENABLE_RENUMBER(yes)
371
372     if test "x$ENABLE_RENUMBER" = "xyes"; then
373         if test "x$metis_ok" = "x"; then
374             echo  
375             echo --------------------------------------------- 
376             echo testing METIS 
377             echo ---------------------------------------------
378             echo 
379             metis_ok=no 
380             CHECK_METIS dnl metis_ok is set to yes by CHECK_METIS
381         fi
382     fi
383
384     if test "${MED_WITH_KERNEL}" = "yes"; then
385         
386       dnl
387       dnl ---------------------------------------------
388       dnl testing sockets
389       dnl ---------------------------------------------
390       dnl
391         
392       CHECK_SOCKETS
393         
394       echo
395       echo ---------------------------------------------
396       echo testing omniORB
397       echo ---------------------------------------------
398       echo
399         
400       CHECK_OMNIORB
401         
402       DEFAULT_ORB=omniORB
403       CHECK_CORBA
404         
405       AC_SUBST_FILE(CORBA)
406       corba=make_$ORB
407       CORBA=adm_local/unix/$corba
408         
409       dnl echo
410       dnl echo ---------------------------------------------
411       dnl echo testing mico
412       dnl echo ---------------------------------------------
413       dnl echo
414         
415       dnl CHECK_MICO
416         
417       echo
418       echo ---------------------------------------------
419       echo testing SALOME Kernel
420       echo ---------------------------------------------
421       echo
422         
423       CHECK_KERNEL
424         
425         echo
426         echo ---------------------------------------------
427         echo testing SALOME GUI
428         echo ---------------------------------------------
429         echo
430         
431         CHECK_GUI_MODULE
432         
433         if test "${SalomeGUI_need}" != "no" -a "${FullGUI_ok}" = "yes" ; then 
434             gui_ok=yes
435         fi
436         
437         if test "${SalomeGUI_need}" == "yes"; then
438             if test "${FullGUI_ok}" != "yes"; then
439                 AC_MSG_WARN(For configure MED module necessary full GUI!)
440             fi
441         elif test "${SalomeGUI_need}" == "auto"; then
442             if test "${FullGUI_ok}" != "yes"; then
443                 AC_MSG_WARN(Full GUI not found. Build will be done without GUI!)
444             fi
445         elif test "${SalomeGUI_need}" == "no"; then
446             echo Build without GUI option has been chosen
447         fi
448         
449       if test "${gui_ok}" = "yes" ; then
450             
451             echo
452             echo ---------------------------------------------
453             echo testing LEX \& YACC
454             echo ---------------------------------------------
455             echo
456             
457             lex_yacc_ok=no
458             AC_PROG_YACC
459             AC_PROG_LEX
460             lex_yacc_ok=yes
461             
462             echo
463             echo ---------------------------------------------
464             echo testing openGL
465             echo ---------------------------------------------
466             echo
467             
468             CHECK_OPENGL
469             
470             echo
471             echo ---------------------------------------------
472             echo testing QT
473             echo ---------------------------------------------
474             echo
475             
476             CHECK_QT
477             
478             echo
479             echo ---------------------------------------------
480             echo testing VTK
481             echo ---------------------------------------------
482             echo
483             
484             CHECK_VTK
485             
486             echo
487             echo ---------------------------------------------
488             echo testing OpenCascade
489             echo ---------------------------------------------
490             echo
491             
492             CHECK_CAS
493             
494         fi # if "${gui_ok}" = "yes" ...
495         
496     fi # MED_WITH_KERNEL
497     
498 fi # "$with_interp_kernel_only" != "yes" ...
499
500
501 ###
502 # Additional substitutions
503 ###
504
505 AC_SUBST(WITHIHM)
506
507 ###
508 # Conditionals
509 ###
510
511 AM_CONDITIONAL(MED_ENABLE_KERNEL,   [test "$MED_WITH_KERNEL" = yes])
512 AM_CONDITIONAL(MED_ENABLE_MICROMED, [test "$with_interp_kernel_only" = yes])
513 AM_CONDITIONAL(MED_ENABLE_GUI,      [test "${gui_ok}" = "yes"])
514 AM_CONDITIONAL(MED_ENABLE_SSTREAM,  [test "$HAVE_SSTREAM" = yes])
515 AM_CONDITIONAL(MED_SWIG_1_3_21,     [test "$SWIG_VERSION" = 1.3.21])
516 AM_CONDITIONAL(MED_ENABLE_SPLITTER, [test "$ENABLE_SPLITTER" = yes])
517 AM_CONDITIONAL(MED_ENABLE_PARMETIS, [test "$ENABLE_PARMETIS" = yes])
518 AM_CONDITIONAL(MED_ENABLE_METIS,    [test "$ENABLE_METIS" = yes])
519 AM_CONDITIONAL(MED_ENABLE_SCOTCH,   [test "$ENABLE_SCOTCH" = yes])
520 AM_CONDITIONAL(MED_WITHMPI,         [test "$WITHMPI" = yes])
521 AM_CONDITIONAL(MED_ENABLE_FVM,      [test "$ENABLE_FVM" = yes])
522 AM_CONDITIONAL(MED_ENABLE_MED3,     [test "$med3_ok" = yes])
523 AM_CONDITIONAL(MED_ENABLE_RENUMBER, [test "$ENABLE_RENUMBER" = yes])
524 AM_CONDITIONAL(BOOST_IS_OK,         [test "$boost_ok" = yes])
525 ###
526 # Print summary
527 ###
528
529 echo
530 echo ---------------------------------------------
531 echo Summary
532 echo ---------------------------------------------
533 echo
534
535 if test "$with_interp_kernel_only" = "yes"; then 
536     echo "Configure (Micro MED)"
537 elif test "$MED_WITH_KERNEL" = "no"; then 
538     echo "Configure (without Kernel)"
539 elif test "${SalomeGUI_need}" == "no"; then
540     echo "Configure (without GUI)"
541 else
542     echo Configure
543 fi
544
545 obligatory_vars="cc_ok threads_ok doxygen_ok"
546 optional_vars="mpi_ok fvm_ok cppunit_ok"
547 gui_vars=""
548
549 if test "x$ENABLE_SPLITTER" = "xyes" ; then
550   splitter_obligatory_vars="libxml_ok"
551   splitter_optional_vars="metis_ok parmetis_ok scotch_ok"
552 fi
553
554 if test "x$ENABLE_RENUMBER" = "xyes" ; then
555   if test "x$splitter_optional_vars" = "x" ; then
556     renumber_optional_vars="metis_ok"
557   fi
558 fi
559 if test "$MED_WITH_KERNEL" = "yes" ; then 
560     # --with-kernel=yes
561     obligatory_vars="$obligatory_vars python_ok boost_ok swig_ok hdf5_ok med3_ok omniORB_ok $splitter_obligatory_vars"
562     optional_vars="$optional_vars $splitter_optional_vars $renumber_optional_vars graphviz_ok Kernel_ok"
563     if test "${gui_ok}" = "yes"; then
564         # GUI is enabled
565         gui_vars="lex_yacc_ok OpenGL_ok qt_ok vtk_ok occ_ok gui_ok"
566     elif test "${SalomeGUI_need}" != "no"; then
567         gui_vars="gui_ok"
568     fi
569 else
570     # --with-kernel=no
571     if test "$with_interp_kernel_only" == "yes" ; then
572         # --with-interp-kernel-only=yes mode
573         optional_vars="$optional_vars $splitter_optional_vars $renumber_optional_vars hdf5_ok med3_ok"
574     else
575         # --with-interp-kernel-only=no mode
576         obligatory_vars="$obligatory_vars python_ok boost_ok swig_ok hdf5_ok med3_ok $splitter_obligatory_vars"
577         optional_vars="$optional_vars $splitter_optional_vars $renumber_optional_vars"
578     fi
579 fi
580
581 ###
582 # obligatory products
583 ###
584
585 echo "--- Obligatory products:"
586
587 missing_obligatory=no
588 for var in $obligatory_vars
589 do
590    eval toto=\$$var
591    if test x$toto == "x"; then toto="no" ; fi
592    if test x$toto == "xno"; then missing_obligatory=yes ; fi
593      printf "   %10s : " `echo \$var | sed -e "s,_ok,,"`
594      eval echo \$$var
595    #fi
596 done
597 if test x$missing_obligatory == "xyes"; then 
598 AC_MSG_ERROR([one or more obligatory product is missing])
599 fi
600
601 ###
602 # GUI products (if enabled)
603 ###
604
605 if test "$gui_vars" != "" ; then
606
607     echo "--- GUI products (optional):"
608
609     for var in $gui_vars
610     do
611         eval toto=\$$var
612         if test x$toto == "x"; then toto="no"; fi
613         printf "   %10s : " `echo \$var | sed -e "s,_ok,,"`
614         eval echo \$toto
615     done
616 fi
617
618 ###
619 # optional products
620 ###
621
622 echo "--- Other (optional) products:"
623
624 for var in $optional_vars
625 do
626    eval toto=\$$var
627    if test x$toto != "x"; then
628      printf "   %10s : " `echo \$var | sed -e "s,_ok,,"`
629      eval echo \$$var
630    fi
631 done
632
633 ###
634 # default ORB (if enabled)
635 ###
636
637 if test "$DEFAULT_ORB" != "" ; then
638    echo
639    echo "Default ORB   : $DEFAULT_ORB"
640    echo
641 fi
642
643 dnl We don t need to say when we re entering directories if we re using
644 dnl GNU make becuase make does it for us.
645 if test "X$GMAKE" = "Xyes"; then
646    AC_SUBST(SETX) SETX=":"
647 else
648    AC_SUBST(SETX) SETX="set -x"
649 fi
650
651 if test -n "${NO_MED_TRACE+X}"; then
652     CPPFLAGS="${CPPFLAGS} -D_NO_MED_TRACE_"
653 fi
654
655 echo
656 echo ---------------------------------------------
657 echo generating Makefiles and configure files
658 echo ---------------------------------------------
659 echo
660
661 AC_OUTPUT_COMMANDS([ \
662       chmod +x ./bin/* \
663 ])
664
665 AC_HACK_LIBTOOL
666 AC_CONFIG_COMMANDS([hack_libtool],[
667 sed -i "s%^CC=\"\(.*\)\"%hack_libtool (){ \n\
668   $(pwd)/hack_libtool \1 \"\$[@]\" \n\
669 }\n\
670 CC=\"hack_libtool\"%g" libtool
671 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
672 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
673 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
674 ],[])
675
676 AC_OUTPUT([ \
677         adm_local_without_kernel/SALOMEconfig.h \
678         Makefile \
679         MED_version.h \
680         adm_local/unix/config_files/Makefile \
681         adm_local/unix/Makefile \
682         adm_local/cmake_files/Makefile \
683         adm_local/Makefile \
684         adm_local_without_kernel/unix/config_files/Makefile \
685         adm_local_without_kernel/unix/Makefile \
686         adm_local_without_kernel/Makefile \
687         resources/Makefile
688         resources/SalomeApp.xml \
689         resources/MEDCatalog.xml \
690         bin/Makefile \
691         bin/VERSION \
692         idl/Makefile \
693         src/Makefile \
694         src/MEDWrapper/Makefile \
695         src/MEDWrapper/Base/Makefile \
696         src/MEDWrapper/Factory/Makefile \
697         src/MEDWrapper/V2_2/Makefile \
698         src/MEDMEM/Doxyfile_med_devel \
699         src/MEDMEM/Doxyfile_med_user \
700         src/MEDMEM/Makefile \
701         src/MEDMEM_SWIG/Makefile \
702         src/MEDMEMBinTest/Makefile \
703         src/MEDMEMCppTest/Makefile \
704         src/INTERP_KERNEL/Makefile \
705         src/INTERP_KERNELTest/Makefile \
706         src/MEDCoupling/Makefile \
707         src/MEDCoupling/Test/Makefile \
708         src/MEDLoader/Makefile \
709         src/MEDLoader/Swig/Makefile \
710         src/MEDLoader/Test/Makefile \
711         src/MEDCoupling_Swig/Makefile \
712         src/MEDCouplingCorba/Makefile \
713         src/MEDCouplingCorba/Client/Makefile \
714         src/MEDCouplingCorba/Test/Makefile \
715         src/MEDCouplingCorba_Swig/Makefile \
716         src/MEDCouplingCorba_Swig/Client/Makefile \
717         src/MEDCalculator/Makefile \
718         src/MEDCalculator/Swig/Makefile \
719         src/MEDCalculator/Test/Makefile \
720         src/MEDSPLITTER/Makefile \
721         src/MEDSPLITTER/Test/Makefile \
722         src/MEDSPLITTER_Swig/Makefile \
723         src/MEDPartitioner/Makefile \
724         src/MEDPartitioner/Test/Makefile \
725         src/RENUMBER/Makefile \
726         src/ParaMEDCouplingCorba/Makefile \
727         src/ParaMEDMEM/Makefile \
728         src/ParaMEDMEMComponent/Makefile \
729         src/ParaMEDLoader/Makefile \
730         src/ParaMEDMEMTest/Makefile \
731         src/ParaMEDMEM_Swig/Makefile \
732         src/MEDMEM_I/Makefile \
733         src/MED/Makefile \
734         src/MedCorba_Swig/Makefile \
735         src/MED_SWIG/Makefile \
736         src/MedClient/Makefile \
737         src/MedClient/src/Makefile \
738         src/MedClient/test/Makefile \
739         src/MedClient/test/environ/Makefile \
740         src/MedClient/test/environ/runContainer \
741         src/MedClient/test/environ/runEnvironTests \
742         src/MedClient/test/environ/runTestMedCorba \
743         src/MedClient/test/environ/stopContainer \
744         src/MedClient/test/environ/csh/init1 \
745         src/MedClient/test/environ/csh/init2 \
746         src/MedClient/test/environ/csh/init3 \
747         src/MedClient/test/environ/csh/Makefile \
748         src/MedClient/test/environ/csh/runContainer \
749         src/MedClient/test/environ/csh/runEnvironTests \
750         src/MedClient/test/environ/csh/stopContainer \
751         src/MedClient/test/test1/Makefile \
752         src/MedClient/test/test2/Makefile \
753         src/MEDGUI/Makefile \
754         src/MEDOP/Makefile \
755         src/MEDOP/cmp/Makefile \
756         src/MEDOP/tui/Makefile \
757         src/MEDOP/tui/xmedpy/Makefile \
758         src/MEDOP/res/Makefile \
759         src/MEDOP/res/testfiles/Makefile \
760         src/MEDOP/gui/dialogs/Makefile \
761         src/MEDOP/gui/Makefile \
762         src/MEDOP/exe/Makefile \
763         src/MEDOP/exe/appligen/Makefile \
764         src/MEDOP/exe/appligen/config_appli_model.xml \
765         src/MEDOP/exe/appligen/appligen.sh \
766         src/MEDOP/exe/image2med/Makefile \
767         src/MEDOP/doc/sphinx/conf.py \
768         src/MEDOP/doc/sphinx/Makefile \
769         doc/Makefile \
770         doc/MEDMEM/Makefile \
771         doc/MEDMEM/MEDMEM_Content.tex \
772         doc/MEDMEM/MEDMEM_UML_light.png \
773         doc/MEDMEM/MEDMEM_UML.png \
774         doc/MEDMEM/MEDMEM_UsersGuide.tex \
775         doc/salome/Makefile \
776         doc/salome/tui/Makefile \
777         doc/salome/tui/doxyfile \
778         doc/salome/tui/static/header.html \
779         doc/doxygen/Makefile \
780         doc/doxygen/Doxyfile_med_user \
781         doc/doxygen/static/header.html \
782 ])