Salome HOME
CoTech decision: move MEDWrapper from MED to SMESH
[modules/med.git] / configure.ac
1 # Copyright (C) 2007-2013  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.2.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=0
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         scotch_ok=no 
337         metis_ok=no 
338         parmetis_ok=no 
339         libxml_ok=no 
340
341         echo  
342         echo --------------------------------------------- 
343         echo testing ParMETIS 
344         echo ---------------------------------------------
345         echo 
346         CHECK_PARMETIS dnl parmetis_ok is set to yes by CHECK_PARMETIS
347
348         if test "x$parmetis_ok" != "xyes"; then
349                 CHECK_PARMETISV4
350         fi
351
352         echo  
353         echo --------------------------------------------- 
354         echo testing METIS 
355         echo ---------------------------------------------
356         echo 
357         CHECK_METIS dnl metis_ok is set to yes by CHECK_METIS
358         
359         echo  
360         echo --------------------------------------------- 
361         echo testing SCOTCH 
362         echo ---------------------------------------------
363         CHECK_SCOTCH 
364         dnl scotch_ok is set to yes by CHECK_SCOTCH    
365         
366         echo        
367         echo --------------------------------------------- 
368         echo testing LIBXML2
369         echo ---------------------------------------------
370         CHECK_LIBXML 
371         dnl libxml_ok is set to yes by CHECK_LIBXML         
372         
373     fi
374     
375     AC_ENABLE_RENUMBER(yes)
376
377     if test "x$ENABLE_RENUMBER" = "xyes"; then
378         if test "x$metis_ok" = "x"; then
379             echo  
380             echo --------------------------------------------- 
381             echo testing METIS 
382             echo ---------------------------------------------
383             echo 
384             metis_ok=no 
385             CHECK_METIS dnl metis_ok is set to yes by CHECK_METIS
386         fi
387     fi
388
389     if test "${MED_WITH_KERNEL}" = "yes"; then
390         
391       dnl
392       dnl ---------------------------------------------
393       dnl testing sockets
394       dnl ---------------------------------------------
395       dnl
396         
397       CHECK_SOCKETS
398         
399       echo
400       echo ---------------------------------------------
401       echo testing omniORB
402       echo ---------------------------------------------
403       echo
404         
405       CHECK_OMNIORB
406         
407       DEFAULT_ORB=omniORB
408       CHECK_CORBA
409         
410       AC_SUBST_FILE(CORBA)
411       corba=make_$ORB
412       CORBA=adm_local/unix/$corba
413         
414       dnl echo
415       dnl echo ---------------------------------------------
416       dnl echo testing mico
417       dnl echo ---------------------------------------------
418       dnl echo
419         
420       dnl CHECK_MICO
421         
422       echo
423       echo ---------------------------------------------
424       echo testing SALOME Kernel
425       echo ---------------------------------------------
426       echo
427         
428       CHECK_KERNEL
429         
430         echo
431         echo ---------------------------------------------
432         echo testing SALOME GUI
433         echo ---------------------------------------------
434         echo
435         
436         CHECK_GUI_MODULE
437         
438         if test "${SalomeGUI_need}" != "no" -a "${FullGUI_ok}" = "yes" ; then 
439             gui_ok=yes
440         fi
441         
442         if test "${SalomeGUI_need}" == "yes"; then
443             if test "${FullGUI_ok}" != "yes"; then
444                 AC_MSG_WARN(For configure MED module necessary full GUI!)
445             fi
446         elif test "${SalomeGUI_need}" == "auto"; then
447             if test "${FullGUI_ok}" != "yes"; then
448                 AC_MSG_WARN(Full GUI not found. Build will be done without GUI!)
449             fi
450         elif test "${SalomeGUI_need}" == "no"; then
451             echo Build without GUI option has been chosen
452         fi
453         
454       if test "${gui_ok}" = "yes" ; then
455             
456             echo
457             echo ---------------------------------------------
458             echo testing LEX \& YACC
459             echo ---------------------------------------------
460             echo
461             
462             lex_yacc_ok=no
463             AC_PROG_YACC
464             AC_PROG_LEX
465             lex_yacc_ok=yes
466             
467             echo
468             echo ---------------------------------------------
469             echo testing openGL
470             echo ---------------------------------------------
471             echo
472             
473             CHECK_OPENGL
474             
475             echo
476             echo ---------------------------------------------
477             echo testing QT
478             echo ---------------------------------------------
479             echo
480             
481             CHECK_QT
482             
483             echo
484             echo ---------------------------------------------
485             echo testing VTK
486             echo ---------------------------------------------
487             echo
488             
489             CHECK_VTK
490             
491             echo
492             echo ---------------------------------------------
493             echo testing OpenCascade
494             echo ---------------------------------------------
495             echo
496             
497             CHECK_CAS
498             
499         fi # if "${gui_ok}" = "yes" ...
500         
501     fi # MED_WITH_KERNEL
502     
503 fi # "$with_interp_kernel_only" != "yes" ...
504
505
506 ###
507 # Additional substitutions
508 ###
509
510 AC_SUBST(WITHIHM)
511
512 ###
513 # Conditionals
514 ###
515
516 AM_CONDITIONAL(MED_ENABLE_KERNEL,   [test "$MED_WITH_KERNEL" = yes])
517 AM_CONDITIONAL(MED_ENABLE_MICROMED, [test "$with_interp_kernel_only" = yes])
518 AM_CONDITIONAL(MED_ENABLE_GUI,      [test "${gui_ok}" = "yes"])
519 AM_CONDITIONAL(MED_ENABLE_SSTREAM,  [test "$HAVE_SSTREAM" = yes])
520 AM_CONDITIONAL(MED_SWIG_1_3_21,     [test "$SWIG_VERSION" = 1.3.21])
521 AM_CONDITIONAL(MED_ENABLE_SPLITTER, [test "$ENABLE_SPLITTER" = yes])
522 AM_CONDITIONAL(MED_ENABLE_PARMETIS, [test "$ENABLE_PARMETIS" = yes])
523 AM_CONDITIONAL(MED_ENABLE_METIS,    [test "$ENABLE_METIS" = yes])
524 AM_CONDITIONAL(MED_ENABLE_SCOTCH,   [test "$ENABLE_SCOTCH" = yes])
525 AM_CONDITIONAL(MED_WITHMPI,         [test "$WITHMPI" = yes])
526 AM_CONDITIONAL(MED_ENABLE_FVM,      [test "$ENABLE_FVM" = yes])
527 AM_CONDITIONAL(MED_ENABLE_MED3,     [test "$med3_ok" = yes])
528 AM_CONDITIONAL(MED_ENABLE_RENUMBER, [test "$ENABLE_RENUMBER" = yes])
529 AM_CONDITIONAL(BOOST_IS_OK,         [test "$boost_ok" = yes])
530 ###
531 # Print summary
532 ###
533
534 echo
535 echo ---------------------------------------------
536 echo Summary
537 echo ---------------------------------------------
538 echo
539
540 if test "$with_interp_kernel_only" = "yes"; then 
541     echo "Configure (Micro MED)"
542 elif test "$MED_WITH_KERNEL" = "no"; then 
543     echo "Configure (without Kernel)"
544 elif test "${SalomeGUI_need}" == "no"; then
545     echo "Configure (without GUI)"
546 else
547     echo Configure
548 fi
549
550 obligatory_vars="cc_ok threads_ok doxygen_ok"
551 optional_vars="mpi_ok fvm_ok cppunit_ok"
552 gui_vars=""
553
554 if test "x$ENABLE_SPLITTER" = "xyes" ; then
555   splitter_obligatory_vars="libxml_ok"
556   splitter_optional_vars="metis_ok parmetis_ok scotch_ok"
557 fi
558
559 if test "x$ENABLE_RENUMBER" = "xyes" ; then
560   if test "x$splitter_optional_vars" = "x" ; then
561     renumber_optional_vars="metis_ok"
562   fi
563 fi
564 if test "$MED_WITH_KERNEL" = "yes" ; then 
565     # --with-kernel=yes
566     obligatory_vars="$obligatory_vars python_ok boost_ok swig_ok hdf5_ok med3_ok omniORB_ok $splitter_obligatory_vars"
567     optional_vars="$optional_vars $splitter_optional_vars $renumber_optional_vars graphviz_ok Kernel_ok"
568     if test "${gui_ok}" = "yes"; then
569         # GUI is enabled
570         gui_vars="lex_yacc_ok OpenGL_ok qt_ok vtk_ok occ_ok gui_ok"
571     elif test "${SalomeGUI_need}" != "no"; then
572         gui_vars="gui_ok"
573     fi
574 else
575     # --with-kernel=no
576     if test "$with_interp_kernel_only" == "yes" ; then
577         # --with-interp-kernel-only=yes mode
578         optional_vars="$optional_vars $splitter_optional_vars $renumber_optional_vars hdf5_ok med3_ok"
579     else
580         # --with-interp-kernel-only=no mode
581         obligatory_vars="$obligatory_vars python_ok boost_ok swig_ok hdf5_ok med3_ok $splitter_obligatory_vars"
582         optional_vars="$optional_vars $splitter_optional_vars $renumber_optional_vars"
583     fi
584 fi
585
586 ###
587 # obligatory products
588 ###
589
590 echo "--- Obligatory products:"
591
592 missing_obligatory=no
593 for var in $obligatory_vars
594 do
595    eval toto=\$$var
596    if test x$toto == "x"; then toto="no" ; fi
597    if test x$toto == "xno"; then missing_obligatory=yes ; fi
598      printf "   %10s : " `echo \$var | sed -e "s,_ok,,"`
599      eval echo \$$var
600    #fi
601 done
602 if test x$missing_obligatory == "xyes"; then 
603 AC_MSG_ERROR([one or more obligatory product is missing])
604 fi
605
606 ###
607 # GUI products (if enabled)
608 ###
609
610 if test "$gui_vars" != "" ; then
611
612     echo "--- GUI products (optional):"
613
614     for var in $gui_vars
615     do
616         eval toto=\$$var
617         if test x$toto == "x"; then toto="no"; fi
618         printf "   %10s : " `echo \$var | sed -e "s,_ok,,"`
619         eval echo \$toto
620     done
621 fi
622
623 ###
624 # optional products
625 ###
626
627 echo "--- Other (optional) products:"
628
629 for var in $optional_vars
630 do
631    eval toto=\$$var
632    if test x$toto != "x"; then
633      printf "   %10s : " `echo \$var | sed -e "s,_ok,,"`
634      eval echo \$$var
635    fi
636 done
637
638 ###
639 # default ORB (if enabled)
640 ###
641
642 if test "$DEFAULT_ORB" != "" ; then
643    echo
644    echo "Default ORB   : $DEFAULT_ORB"
645    echo
646 fi
647
648 dnl We don t need to say when we re entering directories if we re using
649 dnl GNU make becuase make does it for us.
650 if test "X$GMAKE" = "Xyes"; then
651    AC_SUBST(SETX) SETX=":"
652 else
653    AC_SUBST(SETX) SETX="set -x"
654 fi
655
656 if test -n "${NO_MED_TRACE+X}"; then
657     CPPFLAGS="${CPPFLAGS} -D_NO_MED_TRACE_"
658 fi
659
660 echo
661 echo ---------------------------------------------
662 echo generating Makefiles and configure files
663 echo ---------------------------------------------
664 echo
665
666 AC_OUTPUT_COMMANDS([ \
667       chmod +x ./bin/* \
668 ])
669
670 AC_HACK_LIBTOOL
671 AC_CONFIG_COMMANDS([hack_libtool],[
672 sed -i "s%^CC=\"\(.*\)\"%hack_libtool (){ \n\
673   $(pwd)/hack_libtool \1 \"\$[@]\" \n\
674 }\n\
675 CC=\"hack_libtool\"%g" libtool
676 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
677 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
678 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
679 ],[])
680
681 AC_OUTPUT([ \
682         adm_local_without_kernel/SALOMEconfig.h \
683         Makefile \
684         MED_version.h \
685         adm_local/unix/config_files/Makefile \
686         adm_local/unix/Makefile \
687         adm_local/cmake_files/Makefile \
688         adm_local/Makefile \
689         adm_local_without_kernel/unix/config_files/Makefile \
690         adm_local_without_kernel/unix/Makefile \
691         adm_local_without_kernel/Makefile \
692         resources/Makefile
693         resources/SalomeApp.xml \
694         resources/MEDCatalog.xml \
695         bin/Makefile \
696         bin/VERSION \
697         idl/Makefile \
698         src/Makefile \
699         src/INTERP_KERNEL/Makefile \
700         src/INTERP_KERNELTest/Makefile \
701         src/MEDCoupling/Makefile \
702         src/MEDCoupling/Test/Makefile \
703         src/MEDLoader/Makefile \
704         src/MEDLoader/Swig/Makefile \
705         src/MEDLoader/Test/Makefile \
706         src/MEDCoupling_Swig/Makefile \
707         src/MEDCouplingCorba/Makefile \
708         src/MEDCouplingCorba/Client/Makefile \
709         src/MEDCouplingCorba/Test/Makefile \
710         src/MEDCouplingCorba_Swig/Makefile \
711         src/MEDCouplingCorba_Swig/Client/Makefile \
712         src/MEDCalculator/Makefile \
713         src/MEDCalculator/Swig/Makefile \
714         src/MEDCalculator/Test/Makefile \
715         src/MEDPartitioner/Makefile \
716         src/MEDPartitioner/Test/Makefile \
717         src/RENUMBER/Makefile \
718         src/ParaMEDCouplingCorba/Makefile \
719         src/ParaMEDMEM/Makefile \
720         src/ParaMEDMEMComponent/Makefile \
721         src/ParaMEDLoader/Makefile \
722         src/ParaMEDMEMTest/Makefile \
723         src/ParaMEDMEM_Swig/Makefile \
724         src/MEDGUI/Makefile \
725         src/MEDOP/Makefile \
726         src/MEDOP/cmp/Makefile \
727         src/MEDOP/tui/Makefile \
728         src/MEDOP/tui/xmedpy/Makefile \
729         src/MEDOP/res/Makefile \
730         src/MEDOP/res/testfiles/Makefile \
731         src/MEDOP/gui/dialogs/Makefile \
732         src/MEDOP/gui/Makefile \
733         src/MEDOP/exe/Makefile \
734         src/MEDOP/exe/appligen/Makefile \
735         src/MEDOP/exe/appligen/config_appli_model.xml \
736         src/MEDOP/exe/appligen/appligen.sh \
737         src/MEDOP/exe/image2med/Makefile \
738         src/MEDOP/doc/Makefile \
739         src/MEDOP/doc/sphinx/conf.py \
740         src/MEDOP/doc/sphinx/Makefile \
741         doc/Makefile \
742         doc/salome/Makefile \
743         doc/salome/tui/Makefile \
744         doc/salome/tui/doxyfile \
745         doc/salome/tui/static/header.html \
746         doc/doxygen/Makefile \
747         doc/doxygen/Doxyfile_med_user \
748         doc/doxygen/static/header.html \
749 ])