Salome HOME
e44709d5ec50c821622797229d9e132214e886e7
[samples/sierpinsky.git] / build_configure
1 #!/bin/bash
2
3 #
4 # Tool for updating list of .in file for the SALOME project 
5 # and regenerating configure script
6 #
7 # File    : build_configure
8 # Author  : Marc Tajchman - CEA
9 # Created : 10/10/2002
10 #
11
12 ORIG_DIR=`pwd`
13 CONF_DIR=`echo $0 | sed -e "s,[^/]*$,,;s,/$,,;s,^$,.,"`
14
15 ########################################################################
16 # Test if the KERNEL_ROOT_DIR is set correctly
17
18 if test ! -d "${KERNEL_ROOT_DIR}"; then
19     echo "failed : KERNEL_ROOT_DIR variable is not correct !"
20     exit
21 fi
22
23 ########################################################################
24 # Test if the GUI_ROOT_DIR is set correctly
25
26 if test ! -d "${GUI_ROOT_DIR}"; then
27     echo "failed : GUI_ROOT_DIR variable is not correct !"
28     exit
29 fi
30
31 ########################################################################
32 # Test if the MED_ROOT_DIR is set correctly
33
34 if test ! -d "${MED_ROOT_DIR}"; then
35     echo "failed : MED_ROOT_DIR variable is not correct !"
36     exit
37 fi
38
39 ########################################################################
40 # Test if the RANDOMIZER_ROOT_DIR is set correctly
41
42 if test ! -d "${RANDOMIZER_ROOT_DIR}"; then
43     echo "failed : RANDOMIZER_ROOT_DIR variable is not correct !"
44     exit
45 fi
46
47 ########################################################################
48 # Test if the VISU_ROOT_DIR is set correctly
49
50 if test ! -d "${VISU_ROOT_DIR}"; then
51     echo "failed : VISU_ROOT_DIR variable is not correct !"
52     exit
53 fi
54
55 cd ${CONF_DIR}
56 ABS_CONF_DIR=`pwd`
57
58 mkdir -p salome_adm/unix/config_files
59 cp -f ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files/* salome_adm/unix/config_files
60 cp -f ${KERNEL_ROOT_DIR}/salome_adm/unix/pythonbe.py salome_adm/unix
61
62 cp -f ${KERNEL_ROOT_DIR}/salome_adm/unix/SALOMEconfig.h.in salome_adm/unix
63
64 cp -f ${GUI_ROOT_DIR}/adm_local/unix/config_files/* salome_adm/unix/config_files
65 cp -f ${VISU_ROOT_DIR}/adm_local/unix/config_files/* salome_adm/unix/config_files
66 cp -f ${MED_ROOT_DIR}/adm_local/unix/config_files/* salome_adm/unix/config_files
67 cp -f ${RANDOMIZER_ROOT_DIR}/adm_local/unix/config_files/* salome_adm/unix/config_files
68
69 # remove KERNEL deprecated configure files
70 for deprecated in ac_cc_warnings.m4 ac_cxx_partial_specialization.m4 \
71   check_mico.m4 config.guess ltmain.sh ac_cxx_bool.m4 ltconfig ac_cxx_typename.m4 \
72     check_pthreads.m4 config.sub libtool.m4 ac_cxx_mutable.m4 missing
73     do
74       rm -f salome_adm/unix/config_files/${deprecated}
75       done
76
77
78 # ____________________________________________________________________
79 # aclocal creates the aclocal.m4 file from the standard macro and the
80 # custom macro embedded in the directory salome_adm/unix/config_files
81 # and KERNEL config_files directory.
82 # output:
83 #   aclocal.m4
84 #   autom4te.cache (directory)
85 echo "====================================================== aclocal"
86
87 aclocal -I adm_local/unix/config_files -I salome_adm/unix/config_files  || exit 1
88
89 # ____________________________________________________________________
90 # libtoolize creates some configuration files (ltmain.sh,
91 # config.guess and config.sub). It only depends on the libtool
92 # version. The files are created in the directory specified with the
93 # AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac).
94 # output:
95 #   salome_adm/unix/config_files/config.guess
96 #   salome_adm/unix/config_files/config.sub
97 #   salome_adm/unix/config_files/ltmain.sh
98 #echo "====================================================== libtoolize"
99
100 libtoolize --force --copy --automake || exit 1
101
102 # ____________________________________________________________________
103 # autoconf creates the configure script from the file configure.ac (or
104 # configure.in if configure.ac doesn't exist)
105 # output:
106 #   configure
107 echo "====================================================== autoconf"
108
109 autoconf
110
111 # ____________________________________________________________________
112 # automake creates some scripts used in building process
113 # (install-sh, missing, ...). It only depends on the automake
114 # version. The files are created in the directory specified with the
115 # AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac). This step also
116 # creates the Makefile.in files from the Makefile.am files.
117 # output:
118 #   salome_adm/unix/config_files/compile
119 #   salome_adm/unix/config_files/depcomp
120 #   salome_adm/unix/config_files/install-sh
121 #   salome_adm/unix/config_files/missing
122 #   salome_adm/unix/config_files/py-compile
123 #   Makefile.in (from Makefile.am)
124 echo "====================================================== automake"
125
126 automake --copy --gnu --add-missing