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