Salome HOME
Merge from V6_main 15/03/2013
[plugins/ghs3dprlplugin.git] / build_configure
1 #!/bin/bash
2 # Copyright (C) 2007-2012  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 MED_ROOT_DIR is set correctly
46
47 if test ! -d "${MED_ROOT_DIR}"; then
48     echo "failed : MED_ROOT_DIR variable is not correct !"
49     exit
50 fi
51
52 ########################################################################
53 # Test if the GEOM_ROOT_DIR is set correctly
54
55 if test ! -d "${GEOM_ROOT_DIR}"; then
56     echo "failed : GEOM_ROOT_DIR variable is not correct !"
57     exit
58 fi
59
60 ########################################################################
61 # Test if the SMESH_ROOT_DIR is set correctly
62
63 if test ! -d "${SMESH_ROOT_DIR}"; then
64     echo "failed : SMESH_ROOT_DIR variable is not correct !"
65     exit
66 fi
67
68 cd ${CONF_DIR}
69 ABS_CONF_DIR=`pwd`
70
71 #######################################################################
72
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.
77 # output:
78 #   aclocal.m4
79 #   autom4te.cache (directory)
80 echo "======================================================= aclocal"
81
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
89 else
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
95 fi
96
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).
102 # output:
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"
107
108 libtoolize --force --copy --automake || exit 1
109
110 # ____________________________________________________________________
111 # autoconf creates the configure script from the file configure.ac (or
112 # configure.in if configure.ac doesn't exist)
113 # output:
114 #   configure
115 echo "====================================================== autoconf"
116
117 autoconf
118
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.
125 # output:
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"
133
134 automake --copy --gnu --add-missing