]> SALOME platform Git repositories - plugins/hexoticplugin.git/blob - build_configure
Salome HOME
CoTech decision: move MEDWrapper from MED to SMESH
[plugins/hexoticplugin.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   if test -d "${BLSURFPLUGIN_ROOT_DIR}"; then
76     aclocal -I adm_local/unix/config_files \
77             -I ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files \
78             -I ${GUI_ROOT_DIR}/adm_local/unix/config_files \
79             -I ${MED_ROOT_DIR}/adm_local/unix/config_files \
80             -I ${GEOM_ROOT_DIR}/adm_local/unix/config_files \
81             -I ${SMESH_ROOT_DIR}/adm_local/unix/config_files \
82             -I ${BLSURFPLUGIN_ROOT_DIR}/adm_local/unix/config_files || exit 1
83   else
84     aclocal -I adm_local/unix/config_files \
85             -I ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files \
86             -I ${GUI_ROOT_DIR}/adm_local/unix/config_files \
87             -I ${MED_ROOT_DIR}/adm_local/unix/config_files \
88             -I ${GEOM_ROOT_DIR}/adm_local/unix/config_files \
89             -I ${SMESH_ROOT_DIR}/adm_local/unix/config_files || exit 1
90   fi
91 else
92   if test -d "${BLSURFPLUGIN_ROOT_DIR}"; then
93     aclocal -I adm_local/unix/config_files \
94             -I ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files \
95             -I ${MED_ROOT_DIR}/adm_local/unix/config_files \
96             -I ${GEOM_ROOT_DIR}/adm_local/unix/config_files \
97             -I ${SMESH_ROOT_DIR}/adm_local/unix/config_files \
98             -I ${BLSURFPLUGIN_ROOT_DIR}/adm_local/unix/config_files || exit 1
99   else
100     aclocal -I adm_local/unix/config_files \
101             -I ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files \
102             -I ${MED_ROOT_DIR}/adm_local/unix/config_files \
103             -I ${GEOM_ROOT_DIR}/adm_local/unix/config_files \
104             -I ${SMESH_ROOT_DIR}/adm_local/unix/config_files || exit 1
105   fi
106 fi
107
108 # ____________________________________________________________________
109 # libtoolize creates some configuration files (ltmain.sh,
110 # config.guess and config.sub). It only depends on the libtool
111 # version. The files are created in the directory specified with the
112 # AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac).
113 # output:
114 #   adm_local/unix/config_files/config.guess
115 #   adm_local/unix/config_files/config.sub
116 #   adm_local/unix/config_files/ltmain.sh
117 echo "==================================================== libtoolize"
118
119 libtoolize --force --copy --automake || exit 1
120
121 # ____________________________________________________________________
122 # autoconf creates the configure script from the file configure.ac (or
123 # configure.in if configure.ac doesn't exist)
124 # output:
125 #   configure
126 echo "====================================================== autoconf"
127
128 autoconf
129
130 # ____________________________________________________________________
131 # automake creates some scripts used in building process
132 # (install-sh, missing, ...). It only depends on the automake
133 # version. The files are created in the directory specified with the
134 # AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac). This step also
135 # creates the Makefile.in files from the Makefile.am files.
136 # output:
137 #   adm_local/unix/config_files/compile
138 #   adm_local/unix/config_files/depcomp
139 #   adm_local/unix/config_files/install-sh
140 #   adm_local/unix/config_files/missing
141 #   adm_local/unix/config_files/py-compile
142 #   Makefile.in (from Makefile.am)
143 echo "====================================================== automake"
144
145 automake --copy --gnu --add-missing