]> SALOME platform Git repositories - plugins/blsurfplugin.git/blob - build_configure
Salome HOME
CoTech decision: move MEDWrapper from MED to SMESH
[plugins/blsurfplugin.git] / build_configure
1 #!/bin/bash
2 # Copyright (C) 2007-2013  CEA/DEN, EDF R&D
3 #
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.
8 #
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.
13 #
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
17 #
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #
20
21 # ---
22 # File   : build_configure
23 # Author : Vadim SANDLER, Open CASCADE S.A.S (vadim.sandler@opencascade.com)
24 # ---
25 #
26 ORIG_DIR=`pwd`
27 CONF_DIR=`echo $0 | sed -e "s,[^/]*$,,;s,/$,,;s,^$,.,"`
28
29 ########################################################################
30 # Test if the KERNEL_ROOT_DIR is set correctly
31
32 if test ! -d "${KERNEL_ROOT_DIR}"; then
33     echo "failed : KERNEL_ROOT_DIR variable is not correct !"
34     exit
35 fi
36
37 # Test if the KERNEL_SRC is set correctly
38
39 #if test ! -d "${KERNEL_SRC}"; then
40 #    echo "failed : KERNEL_SRC variable is not correct !"
41 #    exit
42 #fi
43
44 ########################################################################
45 # Test if the GEOM_ROOT_DIR is set correctly
46
47 if test ! -d "${GEOM_ROOT_DIR}"; then
48     echo "failed : GEOM_ROOT_DIR variable is not correct !"
49     exit
50 fi
51
52 ########################################################################
53 # Test if the SMESH_ROOT_DIR is set correctly
54
55 if test ! -d "${SMESH_ROOT_DIR}"; then
56     echo "failed : SMESH_ROOT_DIR variable is not correct !"
57     exit
58 fi
59
60 cd ${CONF_DIR}
61 ABS_CONF_DIR=`pwd`
62
63 #######################################################################
64
65 # ____________________________________________________________________
66 # aclocal creates the aclocal.m4 file from the standard macro and the
67 # custom macro embedded in the directory adm_local/unix/config_files
68 # and KERNEL config_files directory.
69 # output:
70 #   aclocal.m4
71 #   autom4te.cache (directory)
72 echo "======================================================= aclocal"
73
74 if test -d "${GUI_ROOT_DIR}"; then
75   aclocal -I adm_local/unix/config_files \
76           -I ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files \
77           -I ${GUI_ROOT_DIR}/adm_local/unix/config_files \
78           -I ${GEOM_ROOT_DIR}/adm_local/unix/config_files \
79           -I ${SMESH_ROOT_DIR}/adm_local/unix/config_files || exit 1
80 else
81   aclocal -I adm_local/unix/config_files \
82           -I ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files \
83           -I ${GEOM_ROOT_DIR}/adm_local/unix/config_files \
84           -I ${SMESH_ROOT_DIR}/adm_local/unix/config_files || exit 1
85 fi
86
87 # ____________________________________________________________________
88 # libtoolize creates some configuration files (ltmain.sh,
89 # config.guess and config.sub). It only depends on the libtool
90 # version. The files are created in the directory specified with the
91 # AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac).
92 # output:
93 #   adm_local/unix/config_files/config.guess
94 #   adm_local/unix/config_files/config.sub
95 #   adm_local/unix/config_files/ltmain.sh
96 echo "==================================================== libtoolize"
97
98 libtoolize --force --copy --automake || exit 1
99
100 # ____________________________________________________________________
101 # autoconf creates the configure script from the file configure.ac (or
102 # configure.in if configure.ac doesn't exist)
103 # output:
104 #   configure
105 echo "====================================================== autoconf"
106
107 autoconf
108
109 # ____________________________________________________________________
110 # automake creates some scripts used in building process
111 # (install-sh, missing, ...). It only depends on the automake
112 # version. The files are created in the directory specified with the
113 # AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac). This step also
114 # creates the Makefile.in files from the Makefile.am files.
115 # output:
116 #   adm_local/unix/config_files/compile
117 #   adm_local/unix/config_files/depcomp
118 #   adm_local/unix/config_files/install-sh
119 #   adm_local/unix/config_files/missing
120 #   adm_local/unix/config_files/py-compile
121 #   Makefile.in (from Makefile.am)
122 echo "====================================================== automake"
123
124 automake --copy --gnu --add-missing