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