2 # Copyright (C) 2007-2011 CEA/DEN, EDF R&D
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License.
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 # Lesser General Public License for more details.
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 # File : build_configure
23 # Author : Vadim SANDLER, Open CASCADE S.A.S (vadim.sandler@opencascade.com)
27 CONF_DIR=`echo $0 | sed -e "s,[^/]*$,,;s,/$,,;s,^$,.,"`
29 ########################################################################
30 # Test if the KERNEL_ROOT_DIR is set correctly
32 if test ! -d "${KERNEL_ROOT_DIR}"; then
33 echo "failed : KERNEL_ROOT_DIR variable is not correct !"
37 # Test if the KERNEL_SRC is set correctly
39 #if test ! -d "${KERNEL_SRC}"; then
40 # echo "failed : KERNEL_SRC variable is not correct !"
44 ########################################################################
45 # Test if the MED_ROOT_DIR is set correctly
47 if test ! -d "${MED_ROOT_DIR}"; then
48 echo "failed : MED_ROOT_DIR variable is not correct !"
52 ########################################################################
53 # Test if the GEOM_ROOT_DIR is set correctly
55 if test ! -d "${GEOM_ROOT_DIR}"; then
56 echo "failed : GEOM_ROOT_DIR variable is not correct !"
60 ########################################################################
61 # Test if the SMESH_ROOT_DIR is set correctly
63 if test ! -d "${SMESH_ROOT_DIR}"; then
64 echo "failed : SMESH_ROOT_DIR variable is not correct !"
71 #######################################################################
73 # ____________________________________________________________________
74 # aclocal creates the aclocal.m4 file from the standard macro and the
75 # custom macro embedded in the directory adm_local/unix/config_files
76 # and KERNEL config_files directory.
79 # autom4te.cache (directory)
80 echo "======================================================= aclocal"
82 if test -d "${GUI_ROOT_DIR}"; then
83 aclocal -I adm_local/unix/config_files \
84 -I ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files \
85 -I ${GUI_ROOT_DIR}/adm_local/unix/config_files \
86 -I ${MED_ROOT_DIR}/adm_local/unix/config_files \
87 -I ${GEOM_ROOT_DIR}/adm_local/unix/config_files \
88 -I ${SMESH_ROOT_DIR}/adm_local/unix/config_files || exit 1
90 aclocal -I adm_local/unix/config_files \
91 -I ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files \
92 -I ${MED_ROOT_DIR}/adm_local/unix/config_files \
93 -I ${GEOM_ROOT_DIR}/adm_local/unix/config_files \
94 -I ${SMESH_ROOT_DIR}/adm_local/unix/config_files || exit 1
97 # ____________________________________________________________________
98 # libtoolize creates some configuration files (ltmain.sh,
99 # config.guess and config.sub). It only depends on the libtool
100 # version. The files are created in the directory specified with the
101 # AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac).
103 # adm_local/unix/config_files/config.guess
104 # adm_local/unix/config_files/config.sub
105 # adm_local/unix/config_files/ltmain.sh
106 echo "==================================================== libtoolize"
108 libtoolize --force --copy --automake || exit 1
110 # ____________________________________________________________________
111 # autoconf creates the configure script from the file configure.ac (or
112 # configure.in if configure.ac doesn't exist)
115 echo "====================================================== autoconf"
119 # ____________________________________________________________________
120 # automake creates some scripts used in building process
121 # (install-sh, missing, ...). It only depends on the automake
122 # version. The files are created in the directory specified with the
123 # AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac). This step also
124 # creates the Makefile.in files from the Makefile.am files.
126 # adm_local/unix/config_files/compile
127 # adm_local/unix/config_files/depcomp
128 # adm_local/unix/config_files/install-sh
129 # adm_local/unix/config_files/missing
130 # adm_local/unix/config_files/py-compile
131 # Makefile.in (from Makefile.am)
132 echo "====================================================== automake"
134 automake --copy --gnu --add-missing